Skip to content

Commit 740e0d6

Browse files
committed
ci: PLT-268: fix pytest path
1 parent 0a589ff commit 740e0d6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/tests.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,13 @@ jobs:
8686
if: ${{ matrix.os != 'ubuntu-latest' || matrix.python-version != '3.11' }}
8787
run: |
8888
source $VENV
89-
cd tests/
90-
poetry run pytest -vv
89+
poetry run pytest tests/ -vv
9190
9291
- name: Run tests with coverage
9392
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }}
9493
run: |
9594
source $VENV
96-
cd tests/
97-
poetry run pytest --cov=. --cov-report=xml -vv
95+
poetry run pytest tests/ --cov=. --cov-report=xml -vv
9896
9997
- name: Upload to Codecov
10098
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }}

0 commit comments

Comments
 (0)