Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
KenyonY committed Nov 16, 2023
1 parent 7057f36 commit 1c722cb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,10 @@ jobs:
# python -m pip install codecov pytest-cov
- name: Run tests
run: |
pytest -v -s
pytest tests/ -v -s --full-trace --junitxml=pytest-report.xml
- name: Upload pytest report
uses: actions/upload-artifact@v2
if: failure() # Only runs if the previous step fails
with:
name: pytest-reports
path: pytest-report.xml

0 comments on commit 1c722cb

Please sign in to comment.