Skip to content

Commit

Permalink
Reduce max size for test_variants_different_dtypes
Browse files Browse the repository at this point in the history
Closes #123
  • Loading branch information
milesgranger committed Jan 21, 2024
1 parent 9220bca commit 67f6902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cramjam-python/tests/test_variants.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_has_version():


@pytest.mark.parametrize("variant_str", VARIANTS)
@given(arr=st_np.arrays(st_np.scalar_dtypes(), shape=st.integers(0, int(1e5))))
@given(arr=st_np.arrays(st_np.scalar_dtypes(), shape=st.integers(0, int(1e4))))
def test_variants_different_dtypes(variant_str, arr):
variant = getattr(cramjam, variant_str)
compressed = variant.compress(arr)
Expand Down

0 comments on commit 67f6902

Please sign in to comment.