We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dcf5d6 commit 34e838cCopy full SHA for 34e838c
tests/test_OMCPath.py
@@ -1,8 +1,14 @@
1
+import sys
2
import OMPython
3
import pytest
4
5
+skip_on_windows = pytest.mark.skipif(
6
+ sys.platform.startswith("win"),
7
+ reason="OpenModelica Docker image is Linux-only; skipping on Windows.",
8
+)
9
-@pytest.mark.skip(reason="This test would fail (no docker on github)")
10
+
11
+@skip_on_windows
12
def test_OMCPath_docker():
13
omcp = OMPython.OMCProcessDocker(docker="openmodelica/openmodelica:v1.25.0-minimal")
14
om = OMPython.OMCSessionZMQ(omc_process=omcp)
0 commit comments