We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d730cb commit 7e87e29Copy full SHA for 7e87e29
test/test_modules/test_serialize_model.py
@@ -16,7 +16,7 @@ def test_generate_horizontal_stratigraphic_model():
16
model_json = model.model_dump_json(by_alias=True, indent=4)
17
18
# Write the JSON to disk
19
- if True:
+ if False:
20
file_path = os.path.join("temp", "horizontal_stratigraphic_model.json")
21
with open(file_path, "w") as f:
22
f.write(model_json)
@@ -58,7 +58,7 @@ def test_save_model_to_disk():
58
gp.compute_model(loaded_model)
59
if True:
60
import gempy_viewer as gpv
61
- gpv.plot_3d(loaded_model)
+ gpv.plot_3d(loaded_model, image=True)
62
63
64
0 commit comments