Skip to content

Commit

Permalink
Try a rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
paulf81 committed Feb 2, 2024
1 parent 1ed7b06 commit fb0ba4b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/continuous-integration-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,19 @@ jobs:
python -m pip install --upgrade pip
pip install -e ".[develop]"
- uses: pre-commit/action@v3.0.0
- name: Run tests and collect coverage
- name: Run tests
run: |
# -rA displays the captured output for all tests after they're run
# See the docs: https://doc.pytest.org/en/latest/reference/reference.html#command-line-flags
pytest -rA tests/
- name: Run coverage tests
- name: Run coverage tests and coveralls
if: (${{ env.COVERALLS_REPO_TOKEN }}) && (matrix.os == 'ubuntu-latest')
run: |
pip install pytest coverage coveralls
coverage run -m pytest -rA tests/
coveralls
env:
uses: coverallsapp/github-action@v2
with:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}


Expand Down

0 comments on commit fb0ba4b

Please sign in to comment.