Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,4 @@ jobs:
- run: |
python -m pytest --durations=10 -v -p no:unraisableexception -We tests/examples_tests/test_tests_completeness.py

# TODO #1207
- if: startsWith(matrix.platform, 'macos-13')
run: python -m pytest --durations=10 -v -p no:unraisableexception -We tests/examples_tests/test_run* -k "not Rozanski_and_Sonntag_1982" --suite ${{ matrix.test-suite }}

- if: ( ! startsWith(matrix.platform, 'macos-13') )
run: python -m pytest --durations=10 -v -p no:unraisableexception -We tests/examples_tests/test_run* --suite ${{ matrix.test-suite }}
- run: python -m pytest --durations=10 -v -p no:unraisableexception -We tests/examples_tests/test_run* --suite ${{ matrix.test-suite }}
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ def variables_fixture():
)


@pytest.mark.xfail(
platform.system() == "Darwin" and platform.machine() == "x86_64",
strict=True,
reason="TODO #1207",
)
class TestFigs456:
@staticmethod
def test_fig_5_vapour_asymptote(variables):
Expand Down
Loading