Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ History

X.Y.Z (YYYY-MM-DD)
------------------
* Add experimental fragments functionality (:pr:`282`, :pr:`291`)
* Add rechunk by size utility funtion (:pr:`284`)
* Add experimental fragments functionality (:pr:`282`)
* Run CI weekly on Monday @ 2h30 am UTC (:pr:`288`)
* Update minio server and client versions (:pr:`287`)
* Retain ROWID coordinates during MS conversion (:pr:`286`)
Expand Down
12 changes: 6 additions & 6 deletions daskms/experimental/fragments/tests/test_fragments.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def test_fragment_with_update(ms, tmp_path_factory, group_cols):
fragment_path = tmp_dir / "fragment.ms"

updates = [
xds.assign({"DATA": (xds.DATA.dims, da.ones_like(xds.DATA.data))})
xds.assign(**{"DATA": (xds.DATA.dims, da.ones_like(xds.DATA.data))})
for xds in reads
]

Expand Down Expand Up @@ -98,7 +98,7 @@ def test_nonoverlapping_parents(ms, tmp_path_factory, group_cols):
fragment1_path = tmp_dir / "fragment1.ms"

updates = [
xds.assign({"DATA": (xds.DATA.dims, da.zeros_like(xds.DATA.data))})
xds.assign(**{"DATA": (xds.DATA.dims, da.zeros_like(xds.DATA.data))})
for xds in reads
]

Expand All @@ -113,7 +113,7 @@ def test_nonoverlapping_parents(ms, tmp_path_factory, group_cols):
)

updates = [
xds.assign({"UVW": (xds.UVW.dims, da.zeros_like(xds.UVW.data))})
xds.assign(**{"UVW": (xds.UVW.dims, da.zeros_like(xds.UVW.data))})
for xds in fragment0_reads
]

Expand Down Expand Up @@ -147,7 +147,7 @@ def test_overlapping_parents(ms, tmp_path_factory, group_cols):
fragment1_path = tmp_dir / "fragment1.ms"

updates = [
xds.assign({"DATA": (xds.DATA.dims, da.ones_like(xds.DATA.data))})
xds.assign(**{"DATA": (xds.DATA.dims, da.ones_like(xds.DATA.data))})
for xds in reads
]

Expand All @@ -162,7 +162,7 @@ def test_overlapping_parents(ms, tmp_path_factory, group_cols):
)

updates = [
xds.assign({"DATA": (xds.DATA.dims, da.zeros_like(xds.DATA.data))})
xds.assign(**{"DATA": (xds.DATA.dims, da.zeros_like(xds.DATA.data))})
for xds in fragment0_reads
]

Expand Down Expand Up @@ -304,7 +304,7 @@ def test_subtable_fragment_with_update(spw_table, tmp_path_factory):

updates = [
xds.assign(
{"CHAN_FREQ": (xds.CHAN_FREQ.dims, da.ones_like(xds.CHAN_FREQ.data))}
**{"CHAN_FREQ": (xds.CHAN_FREQ.dims, da.ones_like(xds.CHAN_FREQ.data))}
)
for xds in reads
]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ xarray = ["xarray"]
zarr = ["zarr"]
s3 = ["s3fs"]
complete = ["s3fs", "pyarrow", "xarray", "zarr"]
testing = ["minio", "pytest", "xarray"]
testing = ["minio", "pytest"]

[tool.poetry.group.dev.dependencies]
tbump = "^6.9.0"
Expand Down