Skip to content

Commit

Permalink
restore all pytests
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasgriffin committed Dec 20, 2024
1 parent 1de06d2 commit a090341
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,15 @@ jobs:
pip install poetry
poetry install
- name: Run tests
- name: Run General Tests
run: |
poetry run pytest -m 'not marker_qt_1 and not marker_qt_2' -vvv --log-cli-level=DEBUG --setup-show --maxfail=1
- name: Run Tests for marker_qt_1
run: |
poetry run pytest -m 'marker_qt_1' -vvv --log-cli-level=DEBUG --setup-show --maxfail=1
- name: Run Tests for marker_qt_2
run: |
poetry run pytest -m 'marker_qt_2' -vvv --log-cli-level=DEBUG --setup-show --maxfail=1

0 comments on commit a090341

Please sign in to comment.