File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 2424
2525from ansys import dpf
2626import ansys .dpf .core .operators as op
27+ import conftest
2728
2829
2930def test_instantiate_workflow_to_workflow_topology_op (server_type ):
@@ -163,12 +164,20 @@ def expected_workflow_topology(workflow):
163164 return workflow_topologies [workflow .name ]
164165
165166
167+ @pytest .mark .skipif (
168+ not conftest .SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_10_0 ,
169+ reason = "any does not support operator below 8.0" ,
170+ )
166171def test_workflow_get_topology (workflow ):
167172 workflow_topology = workflow .get_topology ()
168173
169174 assert workflow_topology
170175
171176
177+ @pytest .mark .skipif (
178+ not conftest .SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_10_0 ,
179+ reason = "any does not support operator below 8.0" ,
180+ )
172181def test_workflow_topology_sizes (workflow , expected_workflow_topology ):
173182 workflow_topology = workflow .get_topology ()
174183
You can’t perform that action at this time.
0 commit comments