We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a589ff commit 740e0d6Copy full SHA for 740e0d6
.github/workflows/tests.yml
@@ -86,15 +86,13 @@ jobs:
86
if: ${{ matrix.os != 'ubuntu-latest' || matrix.python-version != '3.11' }}
87
run: |
88
source $VENV
89
- cd tests/
90
- poetry run pytest -vv
+ poetry run pytest tests/ -vv
91
92
- name: Run tests with coverage
93
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }}
94
95
96
97
- poetry run pytest --cov=. --cov-report=xml -vv
+ poetry run pytest tests/ --cov=. --cov-report=xml -vv
98
99
- name: Upload to Codecov
100
0 commit comments