Skip to content

Commit 69d0bbe

Browse files
committed
Skip tissue meshing in CI smoke test
Update the basic_smoke_test script to call Simulation.build_meshes with tissue=False so that the CI-only smoke test exercises fluid meshing while avoiding the additional TetGen and remeshing work for the tissue domain, improving runtime on Windows and macOS runners.
1 parent 86c0958 commit 69d0bbe

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/scripts/basic_smoke_test.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ def main() -> None:
1919
t.n_add(3)
2020

2121
sim = Simulation(t)
22-
sim.build_meshes(fluid=True, tissue=True, boundary_layer=False)
22+
# For CI we only require the fluid mesh;
23+
# skipping the tissue mesh keeps TetGen runs lighter,
24+
# especially on Windows and macOS runners.
25+
sim.build_meshes(fluid=True, tissue=False, boundary_layer=False)
2326

2427

2528
if __name__ == "__main__":

0 commit comments

Comments
 (0)