-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7dcdfc8
commit 0365e9c
Showing
1 changed file
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
.. codeauthor:: David Zwicker <[email protected]> | ||
""" | ||
|
||
import sys | ||
from pathlib import Path | ||
|
||
import numpy as np | ||
|
@@ -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`" | ||
) | ||
|
@@ -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`" | ||
) | ||
|