Skip to content

Commit

Permalink
fix(test): revert some failing changes (ter)
Browse files Browse the repository at this point in the history
  • Loading branch information
Matteo-Baussart-ANSYS committed Dec 6, 2024
1 parent 5a026b3 commit c047105
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import conftest
from ansys import dpf
from ansys.dpf.core import misc
from conftest import raises_for_servers_version_under

if misc.module_exists("graphviz"):
HAS_GRAPHVIZ = True
Expand Down Expand Up @@ -1032,7 +1031,10 @@ def test_workflow_input_output_streams(server_in_process, simple_bar):
assert times


@raises_for_servers_version_under("10.0")
@pytest.mark.skipif(
not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_10_0,
reason="Operator `workflow_to_workflow_topology` does not exist below 10.0",
)
def test_workflow_get_output_derived_class(server_type):
workflow = dpf.core.Workflow(server=server_type)

Expand Down

0 comments on commit c047105

Please sign in to comment.