Skip to content

Commit

Permalink
Create temp directory for each soap args
Browse files Browse the repository at this point in the history
  • Loading branch information
camposandro committed Aug 27, 2024
1 parent 2bd031b commit 35598b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/hipscat_import/test_run_soap.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@pytest.mark.dask
def test_object_to_self_write_to_cloud(
dask_client,
tmp_path,
tmp_path_factory,
tmp_cloud_path,
small_sky_dir_local,
small_sky_order1_dir_local,
Expand All @@ -35,7 +35,7 @@ def test_object_to_self_write_to_cloud(
output_path=tmp_cloud_path,
output_storage_options=storage_options,
progress_bar=False,
tmp_dir=tmp_path,
tmp_dir=tmp_path_factory.mktemp("small_sky_order_to_order1"),
)
runner.run(small_sky_soap_args, dask_client)

Expand Down Expand Up @@ -66,7 +66,7 @@ def test_object_to_self_write_to_cloud(
output_path=tmp_cloud_path,
output_storage_options=storage_options,
progress_bar=False,
tmp_dir=tmp_path,
tmp_dir=tmp_path_factory.mktemp("small_sky_to_order1_soft"),
)
runner.run(small_sky_soap_args, dask_client)

Expand Down

0 comments on commit 35598b2

Please sign in to comment.