Skip to content

Commit

Permalink
Upgrade GitHub actions #nolog
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Apr 14, 2023
1 parent 04399bd commit 15498a3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@ jobs:
name: coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- run: python -m pip install --upgrade pip wheel
- run: pip install tox tox-gh-actions codecov
- run: pip install tox tox-gh-actions
- run: tox
- run: codecov
- uses: codecov/codecov-action@v3
with:
files: ./coverage.xml
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ python =
[testenv]
commands=
pip install -e .
pytest -p no:logging --cov=src --cov-branch --cov-report=term-missing
pytest -p no:logging --cov=src --cov-branch --cov-report=term-missing --cov-report=xml
deps=
asgiref
pytest
Expand Down

0 comments on commit 15498a3

Please sign in to comment.