Skip to content

Commit 7e46cca

Browse files
author
AzeezIsh
committed
Removed float coverage for bit specific tests.
1 parent b43447e commit 7e46cca

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

tests/test_logical.py

+13-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import arrayfire_wrapper.dtypes as dtype
66
import arrayfire_wrapper.lib as wrapper
7-
from tests.utility_functions import check_type_supported, get_all_types
7+
from tests.utility_functions import check_type_supported, get_all_types, get_real_types
88

99

1010
@pytest.mark.parametrize(
@@ -62,10 +62,12 @@ def test_and_shapes_invalid(invdtypes: dtype.Dtype) -> None:
6262
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
6363
],
6464
)
65-
@pytest.mark.parametrize("dtype_name", get_all_types())
65+
@pytest.mark.parametrize("dtype_name", get_real_types())
6666
def test_bitand_shape_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
6767
"""Test bitand operation between two arrays of the same shape"""
6868
check_type_supported(dtype_name)
69+
if dtype_name == dtype.f16 or dtype_name == dtype.f32:
70+
pytest.skip()
6971
lhs = wrapper.randu(shape, dtype_name)
7072
rhs = wrapper.randu(shape, dtype_name)
7173

@@ -102,10 +104,12 @@ def test_bitand_shapes_invalid(invdtypes: dtype.Dtype) -> None:
102104
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
103105
],
104106
)
105-
@pytest.mark.parametrize("dtype_name", get_all_types())
107+
@pytest.mark.parametrize("dtype_name", get_real_types())
106108
def test_bitnot_shape_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
107109
"""Test bitnot operation between two arrays of the same shape"""
108110
check_type_supported(dtype_name)
111+
if dtype_name == dtype.f16 or dtype_name == dtype.f32:
112+
pytest.skip()
109113
out = wrapper.randu(shape, dtype_name)
110114

111115
result = wrapper.bitnot(out)
@@ -140,10 +144,12 @@ def test_bitnot_shapes_invalid(invdtypes: dtype.Dtype) -> None:
140144
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
141145
],
142146
)
143-
@pytest.mark.parametrize("dtype_name", get_all_types())
147+
@pytest.mark.parametrize("dtype_name", get_real_types())
144148
def test_bitor_shape_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
145149
"""Test bitor operation between two arrays of the same shape"""
146150
check_type_supported(dtype_name)
151+
if dtype_name == dtype.f16 or dtype_name == dtype.f32:
152+
pytest.skip()
147153
lhs = wrapper.randu(shape, dtype_name)
148154
rhs = wrapper.randu(shape, dtype_name)
149155

@@ -180,10 +186,12 @@ def test_bitor_shapes_invalid(invdtypes: dtype.Dtype) -> None:
180186
(random.randint(1, 10), random.randint(1, 10), random.randint(1, 10), random.randint(1, 10)),
181187
],
182188
)
183-
@pytest.mark.parametrize("dtype_name", get_all_types())
189+
@pytest.mark.parametrize("dtype_name", get_real_types())
184190
def test_bitxor_shape_dtypes(shape: tuple, dtype_name: dtype.Dtype) -> None:
185191
"""Test bitxor operation between two arrays of the same shape"""
186192
check_type_supported(dtype_name)
193+
if dtype_name == dtype.f16 or dtype_name == dtype.f32:
194+
pytest.skip()
187195
lhs = wrapper.randu(shape, dtype_name)
188196
rhs = wrapper.randu(shape, dtype_name)
189197

0 commit comments

Comments
 (0)