Skip to content

Commit

Permalink
Remove float128 test
Browse files Browse the repository at this point in the history
  • Loading branch information
thodson-usgs committed Apr 23, 2024
1 parent 9961e76 commit 3e8861c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions numcodecs/tests/test_bitinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,6 @@ def test_bitinfo_encode_errors():
with pytest.raises(TypeError):
bitinfo.encode(a)

a = np.array([1.0, 2.0, 3.0], dtype="float128")
with pytest.raises(TypeError):
bitinfo.encode(a)


def test_exponent_bias():
assert exponent_bias("f2") == 15
Expand All @@ -58,7 +54,7 @@ def test_exponent_bias():


def test_mutual_information():
""" Test mutual information calculation
"""Test mutual information calculation
Tests for changes to the mutual_information
but not the correcteness of the original.
Expand Down

0 comments on commit 3e8861c

Please sign in to comment.