Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
[TEST] Fixing test for ci
  • Loading branch information
Leguark committed May 23, 2025
commit 7e87e29f1d0139a08fc2bc9feaa455a1d3e01c61
4 changes: 2 additions & 2 deletions test/test_modules/test_serialize_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def test_generate_horizontal_stratigraphic_model():
model_json = model.model_dump_json(by_alias=True, indent=4)

# Write the JSON to disk
if True:
if False:
file_path = os.path.join("temp", "horizontal_stratigraphic_model.json")
with open(file_path, "w") as f:
f.write(model_json)
Expand Down Expand Up @@ -58,7 +58,7 @@ def test_save_model_to_disk():
gp.compute_model(loaded_model)
if True:
import gempy_viewer as gpv
gpv.plot_3d(loaded_model)
gpv.plot_3d(loaded_model, image=True)



Expand Down