Skip to content

Commit

Permalink
Work around zarr issue
Browse files Browse the repository at this point in the history
  • Loading branch information
benjeffery committed May 15, 2024
1 parent 151d1f8 commit 4ea24e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_formats.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ def test_from_tree_sequence_time_incompatibilities(self):
def test_chunk_size(self):
ts = tsutil.get_example_ts(4, mutation_rate=0.005)
assert ts.num_sites > 50
for chunk_size in [1, 2, 3, ts.num_sites - 1, ts.num_sites, ts.num_sites + 1]:
for chunk_size in [2, 3, ts.num_sites - 1, ts.num_sites, ts.num_sites + 1]:
input_file = formats.SampleData(
sequence_length=ts.sequence_length, chunk_size=chunk_size
)
Expand Down

0 comments on commit 4ea24e6

Please sign in to comment.