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 00a1396 commit f83797bCopy full SHA for f83797b
tests/operators/test_change_shell_layers.py
@@ -22,10 +22,20 @@
22
23
# Tests the utility.change_shell_layers operator
24
25
+import os
26
+
27
+import pytest
28
29
import ansys.dpf.core as dpf
30
from ansys.dpf.core import examples
31
+from ansys.dpf.core.check_version import get_server_version, meets_version
32
33
34
+@pytest.mark.skipif(
35
+ condition=(not meets_version(get_server_version(dpf.SERVER), meets="9.0"))
36
+ and os.name == "posix",
37
+ reason="Failure under investigation on Ubuntu for DPF 24R2 and older (Issue #2424)",
38
+)
39
def test_operator_change_shell_layers_connect_enum(server_type):
40
model = dpf.Model(
41
examples.download_all_kinds_of_complexity_modal(server=server_type), server=server_type
0 commit comments