Skip to content

Commit f83797b

Browse files
PProfiziansys-akarcher
authored andcommitted
ci(test): skip test-operators/test_operator_change_shell_layers_connect_enum (#2425)
1 parent 00a1396 commit f83797b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tests/operators/test_change_shell_layers.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,20 @@
2222

2323
# Tests the utility.change_shell_layers operator
2424

25+
import os
26+
27+
import pytest
28+
2529
import ansys.dpf.core as dpf
2630
from ansys.dpf.core import examples
31+
from ansys.dpf.core.check_version import get_server_version, meets_version
2732

2833

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+
)
2939
def test_operator_change_shell_layers_connect_enum(server_type):
3040
model = dpf.Model(
3141
examples.download_all_kinds_of_complexity_modal(server=server_type), server=server_type

0 commit comments

Comments
 (0)