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 376f85e commit 37cbe61Copy full SHA for 37cbe61
tests/test_python_plugins.py
@@ -37,6 +37,7 @@
37
PinSpecification,
38
SpecificationProperties,
39
)
40
+import ansys.dpf.core.server_types
41
import conftest
42
from conftest import (
43
SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_4_0,
@@ -54,6 +55,10 @@
54
55
if platform.system() == "Linux":
56
pytest.skip("Known failures for the Ubuntu-latest GitHub pipelines", allow_module_level=True)
57
58
+running_docker = ansys.dpf.core.server_types.RUNNING_DOCKER.use_docker
59
+if running_docker:
60
+ pytest.skip("Skip python plugins tests in docker", allow_module_level=True)
61
+
62
update_virtual_environment_for_custom_operators(restore_original=True)
63
update_virtual_environment_for_custom_operators()
64
0 commit comments