diff --git a/.github/workflows/build-mac-test.yml b/.github/workflows/build-mac-test.yml index 9995730..8bac7d9 100644 --- a/.github/workflows/build-mac-test.yml +++ b/.github/workflows/build-mac-test.yml @@ -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 \ No newline at end of file diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 58c5ee0..9e634c9 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -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