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 065e3d6 commit aff365eCopy full SHA for aff365e
test/test_modules/test_serialize_model.py
@@ -14,9 +14,10 @@ def test_generate_horizontal_stratigraphic_model():
14
model_json = model.model_dump_json(by_alias=True, indent=4, exclude={"*data"})
15
16
# Write the JSON to disk
17
- file_path = os.path.join("temp", "horizontal_stratigraphic_model.json")
18
- with open(file_path, "w") as f:
19
- f.write(model_json)
+ if False:
+ file_path = os.path.join("temp", "horizontal_stratigraphic_model.json")
+ with open(file_path, "w") as f:
20
+ f.write(model_json)
21
22
with loading_model_injection(
23
surface_points_binary=model.structural_frame.surface_points_copy.data, # TODO: Here we need to pass the binary array
0 commit comments