Skip to content

Commit

Permalink
feat: updates arg name for zarr path
Browse files Browse the repository at this point in the history
  • Loading branch information
jtyoung84 committed Mar 18, 2024
1 parent 9302f31 commit 639aafe
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 22 deletions.
2 changes: 1 addition & 1 deletion src/aind_data_transformation/ephys/ephys_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def _compress_and_write_block(
)
_ = rec.save(
format=output_format,
zarr_path=zarr_path,
folder=zarr_path,
compressor=compressor,
**job_kwargs,
)
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

36 changes: 18 additions & 18 deletions tests/test_ephys_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ def test_compress_and_write_scaled_blocks(
[
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -541,7 +541,7 @@ def test_compress_and_write_scaled_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -561,7 +561,7 @@ def test_compress_and_write_scaled_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -585,7 +585,7 @@ def test_compress_and_write_scaled_blocks(
[
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -605,7 +605,7 @@ def test_compress_and_write_scaled_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -625,7 +625,7 @@ def test_compress_and_write_scaled_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -645,7 +645,7 @@ def test_compress_and_write_scaled_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -665,7 +665,7 @@ def test_compress_and_write_scaled_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -685,7 +685,7 @@ def test_compress_and_write_scaled_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand Down Expand Up @@ -741,7 +741,7 @@ def test_compress_and_write_read_blocks(
[
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -761,7 +761,7 @@ def test_compress_and_write_read_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -781,7 +781,7 @@ def test_compress_and_write_read_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -801,7 +801,7 @@ def test_compress_and_write_read_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -821,7 +821,7 @@ def test_compress_and_write_read_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -841,7 +841,7 @@ def test_compress_and_write_read_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -861,7 +861,7 @@ def test_compress_and_write_read_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -881,7 +881,7 @@ def test_compress_and_write_read_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand All @@ -901,7 +901,7 @@ def test_compress_and_write_read_blocks(
),
call(
format="zarr",
zarr_path=(
folder=(
Path("output_dir")
/ "compressed"
/ (
Expand Down

0 comments on commit 639aafe

Please sign in to comment.