From 0365e9cbf34d02c0f0d47019a3aef672e6632702 Mon Sep 17 00:00:00 2001 From: David Zwicker Date: Wed, 17 Apr 2024 14:03:39 +0200 Subject: [PATCH] Skip some tests on windows platform --- tests/test_integration.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_integration.py b/tests/test_integration.py index 38ed09cd..bb7c71f1 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -4,6 +4,7 @@ .. codeauthor:: David Zwicker """ +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`" )