Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove a test due to changes on eCONTA174 (consider as linear/quadratic instead of semi parabolic) #1746

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions tests/test_meshregion.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,17 +643,6 @@ def test_mesh_deep_copy2(simple_bar_model, server_type):
)


@pytest.mark.skipif(
not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_4_0,
reason="Bug in server version lower than 4.0",
)
def test_semi_parabolic_meshed_region(server_type, allkindofcomplexity):
mesh = dpf.core.Model(allkindofcomplexity, server=server_type).metadata.meshed_region
has_semi_par = False
el = mesh.elements[0]
assert dpf.core.element_types.descriptor(el.type).n_nodes != len(el.connectivity)


@pytest.mark.skipif(
not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_4_0,
reason="Bug in server version lower than 4.0",
Expand Down
Loading