From 0a1386149ce377ca7233ff2c01710ae5a6fda80a Mon Sep 17 00:00:00 2001 From: knappersfy Date: Wed, 6 May 2026 16:24:37 +0200 Subject: [PATCH] revert some code --- examples/06_example_maps_p10_90.ipynb | 1 + tests/test_doc_examples.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/06_example_maps_p10_90.ipynb b/examples/06_example_maps_p10_90.ipynb index 3e18718..d0445c7 100644 --- a/examples/06_example_maps_p10_90.ipynb +++ b/examples/06_example_maps_p10_90.ipynb @@ -186,6 +186,7 @@ " doublet = ThermoGISDoublet(aquifer=aquifer)\n", " results = doublet.simulate(\n", " p_values=[10, 20, 30, 40, 50, 60, 70, 80, 90],\n", + " chunk_size=100_000\n", " ).to_dataset()\n", " results.to_netcdf(\n", " output_data_path / \"output_results.nc\"\n", diff --git a/tests/test_doc_examples.py b/tests/test_doc_examples.py index a9cdbe0..920bb0c 100644 --- a/tests/test_doc_examples.py +++ b/tests/test_doc_examples.py @@ -112,7 +112,6 @@ def test_example_5(): plt.savefig(output_data_path / "kh.png") -@pytest.mark.skip("This test is computationally expensive, skip on the pipeline") def test_example_6(): # the location of the input data: # the data can be found in the resources/example_data directory of the repo @@ -213,7 +212,7 @@ def test_example_6(): else: results = ( ThermoGISDoublet(aquifer=aquifer) - .simulate(p_values=[10, 20, 30, 40, 50, 60, 70, 80, 90]) + .simulate(p_values=[10, 20, 30, 40, 50, 60, 70, 80, 90], chunk_size=100_000) .to_dataset() ) results.to_netcdf( -- GitLab