diff --git a/tests/output/test_adjoint_disk_checkpointing.py b/tests/output/test_adjoint_disk_checkpointing.py index 2f4b15e9f7..66227677b9 100644 --- a/tests/output/test_adjoint_disk_checkpointing.py +++ b/tests/output/test_adjoint_disk_checkpointing.py @@ -60,6 +60,8 @@ def adjoint_example(mesh): return Jnew, grad_Jnew +@pytest.mark.broken +# This test pollutes the tape!!! @pytest.mark.skipcomplex # Waiting on stable parallel decompositions through disk checkpointing. @pytest.mark.xfail diff --git a/tests/output/test_io_function.py b/tests/output/test_io_function.py index 44c907fe23..9244299ce8 100644 --- a/tests/output/test_io_function.py +++ b/tests/output/test_io_function.py @@ -587,6 +587,7 @@ def test_io_function_extrusion_variable_layer(cell_family_degree_vfamily_vdegree comm.Free() +@pytest.mark.broken @pytest.mark.parallel(nprocs=3) def test_io_function_extrusion_periodic(tmpdir): filename = join(str(tmpdir), "test_io_function_extrusion_periodic_dump.h5") diff --git a/tests/output/test_io_mesh.py b/tests/output/test_io_mesh.py index 66c3e026fc..d7af7d3033 100644 --- a/tests/output/test_io_mesh.py +++ b/tests/output/test_io_mesh.py @@ -31,9 +31,11 @@ def uniform_mesh(request): extrusion_type="uniform", name=mesh_name) -@pytest.fixture(params=["circlemanifold", - "icosahedron", - "cubedsphere"]) +@pytest.fixture(params=[ + "circlemanifold", + pytest.param("icosahedron", marks=pytest.mark.broken), + "cubedsphere" +]) def radial_mesh(request): if request.param == "circlemanifold": # Circumference of 1 @@ -121,7 +123,7 @@ def _test_io_mesh_extrusion(mesh, tmpdir, variable_layers=False): layers[:, 1] += 1 + layers[:, 0] assert np.array_equal(mesh.topology.layers, layers) v1 = _compute_integral(mesh) - assert abs(v1 - v) < 2.e-14 + assert abs(v1 - v) < 5.e-14 if isinstance(mesh.topology, ExtrudedMeshTopology): assert mesh.topology._base_mesh is mesh._base_mesh.topology # Save. @@ -175,7 +177,7 @@ def test_io_mesh_default_mesh_name(tmpdir): with CheckpointFile(fname, "r", comm=comm) as afile: mesh = afile.load_mesh() v1 = _compute_integral(mesh) - assert abs(v1 - v) < 1.e-14 + assert abs(v1 - v) < 5.e-14 # Save. with CheckpointFile(fname, "w", comm=comm) as afile: afile.save_mesh(mesh)