diff --git a/examples/06_example_maps_p10_90.ipynb b/examples/06_example_maps_p10_90.ipynb index 3e1871820b7ecc790631804fd1cf6220e7543a40..d0445c797640ff4b9ef594624f8ad692eead4344 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 a9cdbe0df697b2cc6b6315fea984ab4ac7d30607..920bb0c8942c0b68448208cdc587d0f776059c1d 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(