We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a16d44 commit 0ea522eCopy full SHA for 0ea522e
1 file changed
tests/test_OMCPath.py
@@ -43,6 +43,23 @@ def test_OMCPath_local():
43
del om
44
45
46
+@pytest.mark.skip(reason="Not able to run WSL on github")
47
+def test_OMCPath_WSL():
48
+ omcp = OMPython.OMCProcessWSL(
49
+ wsl_omc='omc',
50
+ wsl_user='omc',
51
+ timeout=30.0,
52
+ )
53
+ om = OMPython.OMCSessionZMQ(omc_process=omcp)
54
+
55
+ tempdir = '/tmp'
56
57
+ _run_OMCPath_checks(tempdir, om)
58
59
+ del omcp
60
+ del om
61
62
63
def _run_OMCPath_checks(tempdir: str, om: OMPython.OMCSessionZMQ):
64
p1 = om.omcpath(tempdir).resolve().absolute()
65
assert str(p1) == tempdir
0 commit comments