Skip to content

Commit

Permalink
Updated command to run pytest
Browse files Browse the repository at this point in the history
pytest is the recommended way to run pytest since version 3.0, the old command of py.test may be deprecated in the future. See here: pytest-dev/pytest#1629
  • Loading branch information
sean-reed authored Feb 2, 2023
1 parent b2f909d commit ec896b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Type check
run: mypy --config mypy.ini styleguide_example/
- name: Run tests
run: py.test
run: pytest

deploy_to_heroku:
runs-on: ubuntu-latest
Expand Down

0 comments on commit ec896b5

Please sign in to comment.