Skip to content

Commit

Permalink
ci: PLT-268: fix pytest path
Browse files Browse the repository at this point in the history
  • Loading branch information
farioas committed Apr 1, 2024
1 parent 0a589ff commit 740e0d6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,13 @@ jobs:
if: ${{ matrix.os != 'ubuntu-latest' || matrix.python-version != '3.11' }}
run: |
source $VENV
cd tests/
poetry run pytest -vv
poetry run pytest tests/ -vv
- name: Run tests with coverage
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }}
run: |
source $VENV
cd tests/
poetry run pytest --cov=. --cov-report=xml -vv
poetry run pytest tests/ --cov=. --cov-report=xml -vv
- name: Upload to Codecov
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }}
Expand Down

0 comments on commit 740e0d6

Please sign in to comment.