Skip to content

Commit

Permalink
Skip some tests on windows platform
Browse files Browse the repository at this point in the history
  • Loading branch information
david-zwicker committed Apr 17, 2024
1 parent 7dcdfc8 commit 0365e9c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.. codeauthor:: David Zwicker <[email protected]>
"""

import sys
from pathlib import Path

import numpy as np
Expand Down Expand Up @@ -128,6 +129,7 @@ def pde_rhs(state_data, t):
assert info["state_modifications"] == info3["solver"]["state_modifications"]


@pytest.mark.skipif(sys.platform == "win32", reason="submit_job has issues on windows")
@pytest.mark.skipif(
not module_available("modelrunner"), reason="requires `py-modelrunner`"
)
Expand Down Expand Up @@ -168,6 +170,7 @@ def test_modelrunner_storage_one(tmp_path, capsys):
path.unlink()


@pytest.mark.skipif(sys.platform == "win32", reason="submit_jobs has issues on windows")
@pytest.mark.skipif(
not module_available("modelrunner"), reason="requires `py-modelrunner`"
)
Expand Down

0 comments on commit 0365e9c

Please sign in to comment.