Browse Source

simple coveralls and fix powershell syntax

pull/300/head
Rossen 5 years ago
committed by GitHub
parent
commit
7b33b8b383
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      .github/workflows/testing_initiative.yml

22
.github/workflows/testing_initiative.yml

@ -31,26 +31,16 @@ jobs:
run: python -c "import sys; print(sys.version)" run: python -c "import sys; print(sys.version)"
- name: Install dependencies - name: Install dependencies
run: | run: |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi pip install -r requirements.txt
pip install coveralls pip install coveralls
- name: Run Tests - name: Run Tests
run: | run: |
PYTHONHASHSEED=0 pytest --cov=steam tests PYTHONHASHSEED=0 pytest --cov=steam tests
- name: Coveralls Parallel - name: Coveralls
uses: coverallsapp/github-action@master env:
with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.github_token }} run: |
flag-name: run-${{ matrix.test_number }} coveralls
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
build-docs: build-docs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:

Loading…
Cancel
Save