From f7aafe9c767adb7a8ffd9a13e6e60838b714c386 Mon Sep 17 00:00:00 2001 From: German Date: Wed, 25 Oct 2023 13:23:58 +0200 Subject: [PATCH] Marking as xfail flaky tests. --- tests/test_mesh_grpc.py | 1 + tests/test_pool.py | 1 + tests/test_post.py | 1 + 3 files changed, 3 insertions(+) diff --git a/tests/test_mesh_grpc.py b/tests/test_mesh_grpc.py index 4afc487f8c..7667c6ac97 100644 --- a/tests/test_mesh_grpc.py +++ b/tests/test_mesh_grpc.py @@ -58,6 +58,7 @@ def test_local(mapdl): assert mapdl._local == mapdl.mesh.local +@pytest.mark.xfail(strict=False, reason="Flaky test. See #2435") def test_empty_mesh(mapdl, cleared): assert mapdl.mesh.n_node == 0 assert mapdl.mesh.n_elem == 0 diff --git a/tests/test_pool.py b/tests/test_pool.py index ae8cd83250..302e3c66ed 100644 --- a/tests/test_pool.py +++ b/tests/test_pool.py @@ -77,6 +77,7 @@ def test_invalid_exec(): ) +@pytest.mark.xfail(strict=False, reason="Flaky test. See #2435") @skip_if_not_local def test_heal(pool): pool_sz = len(pool) diff --git a/tests/test_post.py b/tests/test_post.py index 2edd736220..4067707b5b 100644 --- a/tests/test_post.py +++ b/tests/test_post.py @@ -733,6 +733,7 @@ def test_plot_incomplete_element_selection(mapdl, contact_solve): assert mapdl.post_processing.plot_element_displacement() is None +@pytest.mark.xfail(strict=False, reason="The image regression is failing. See #2435") def test_plot_incomplete_nodal_selection(mapdl, contact_solve): mapdl.nsel("S", "NODE", "", 1, mapdl.mesh.n_node // 2) assert mapdl.post_processing.plot_nodal_displacement() is None