Skip to content

Commit

Permalink
Update changelog for release
Browse files Browse the repository at this point in the history
Plus fix test
  • Loading branch information
jeromekelleher committed Apr 24, 2024
1 parent e093c43 commit 7835d3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 0.0.6 2024-04-xx
# 0.0.6 2024-04-24

- Only use NOSHUFFLE by default on ``call_genotype`` and bool arrays.
- Add initial implementation of distributed encode

# 0.0.5 2024-04-17

Expand Down
4 changes: 3 additions & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@

DEFAULT_DENCODE_PARTITION_ARGS = dict()

DEFAULT_DENCODE_FINALISE_ARGS = dict(show_progress=True)


class TestWithMocks:
vcf_path = "tests/data/vcf/sample.vcf.gz"
Expand Down Expand Up @@ -443,7 +445,7 @@ def test_vcf_dencode_finalise(self, mocked, tmp_path):
assert result.exit_code == 0
assert len(result.stdout) == 0
assert len(result.stderr) == 0
mocked.assert_called_once_with(str(tmp_path))
mocked.assert_called_once_with(str(tmp_path), **DEFAULT_DENCODE_FINALISE_ARGS)

@mock.patch("bio2zarr.vcf.convert")
def test_convert_vcf(self, mocked):
Expand Down

0 comments on commit 7835d3f

Please sign in to comment.