Skip to content

Commit

Permalink
test.yml - use setup python everywhere and change pytest to python -m…
Browse files Browse the repository at this point in the history
… python
  • Loading branch information
K0lb3 committed Oct 22, 2024
1 parent 412febd commit cd89eab
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@ jobs:

- name: Set up Python
uses: actions/setup-python@v5
if: matrix.os == 'ubuntu-latest'
with:
python-version: '3.7'

- name: Install
run: pip install .[tests]

- name: Run tests
run: pytest -vs ./tests
run: python -m pytest -vs ./tests

0 comments on commit cd89eab

Please sign in to comment.