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 6052034 commit 5a026b3Copy full SHA for 5a026b3
tests/test_any.py
@@ -24,7 +24,6 @@
24
25
import conftest
26
from ansys.dpf import core as dpf
27
-from conftest import raises_for_servers_version_under
28
29
30
@conftest.raises_for_servers_version_under("7.0")
@@ -135,7 +134,10 @@ def test_cast_workflow_any(server_type):
135
134
assert new_entity.input_names == []
136
137
138
-@raises_for_servers_version_under("10.0")
+@pytest.mark.skipif(
+ not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_10_0,
139
+ reason="any does not support operator below 10.0",
140
+)
141
def test_cast_operator_any(server_type):
142
entity = dpf.Operator(server=server_type, name="U")
143
any_dpf = dpf.Any.new_from(entity)
0 commit comments