Skip to content

Commit

Permalink
fix: github action pytest path
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurVerrez committed Oct 12, 2023
1 parent 4a88d3d commit abdcaf5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ jobs:
python -m pip install --upgrade pip
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Test with pytest
run: pytest tests/
run: |
cd ./tests
pytest

0 comments on commit abdcaf5

Please sign in to comment.