Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .cspell_dict.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ finsberg
Francesco
functionspace
geodir
gmsh
gradu
Grice
Guccione
Expand Down
2 changes: 2 additions & 0 deletions tests/test_geometry.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import math

import gmsh
import numpy as np
import pytest
import ufl
Expand Down Expand Up @@ -111,6 +112,7 @@ def test_HeartGeometry_lv(tmp_path):
# assert np.isclose(geo2.volume("ENDO"), endo_volume, atol=1e-7)


@pytest.mark.skipif(gmsh.__version__ == "4.14.0", reason="GMSH 4.14.0 has a bug with fuse")
def test_HeartGeometry_biv(tmp_path):
geo1 = cardiac_geometries.mesh.biv_ellipsoid(
outdir=tmp_path,
Expand Down