Skip to content

Commit

Permalink
Workflow fix for dmg (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasgriffin authored Dec 20, 2024
1 parent 56d4fe6 commit dee06cc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-mac-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Upload DMG Files from dist/
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: dmgs
path: dist/*.dmg
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 dee06cc

Please sign in to comment.