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 fbe7103 commit 30c44c9Copy full SHA for 30c44c9
tests/test_pathsupport.py
@@ -2,6 +2,9 @@
2
import pytest
3
import functools
4
import os
5
+from conftest import (
6
+ running_docker
7
+)
8
9
from ansys import dpf
10
from pathlib import Path
@@ -31,7 +34,7 @@ def test_print_data_sources_path(allkindofcomplexity):
31
34
assert len(data_sources.result_files) == 1
32
35
assert os.path.normpath(data_sources.result_files[0]) == os.path.normpath(allkindofcomplexity)
33
36
-
37
+@pytest.mark.skipif(os.name == "nt" and running_docker, reason="Path is setting backslashes")
38
def test_all_result_operators_exist_path(allkindofcomplexity):
39
path = Path(allkindofcomplexity)
40
model = dpf.core.Model(path)
0 commit comments