Skip to content

Commit 81d8181

Browse files
committed
Add no_none=True to test_compress_condition_all_dtypes
1 parent b4264a8 commit 81d8181

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/tests/test_indexing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1348,7 +1348,7 @@ def test_compress_basic(self):
13481348
result = dpnp.compress(cond, a, axis=0)
13491349
assert_array_equal(expected, result)
13501350

1351-
@pytest.mark.parametrize("dtype", get_all_dtypes())
1351+
@pytest.mark.parametrize("dtype", get_all_dtypes(no_none=True))
13521352
def test_compress_condition_all_dtypes(self, dtype):
13531353
a_np = numpy.arange(10, dtype="i4")
13541354
a = dpnp.arange(10, dtype="i4")

0 commit comments

Comments
 (0)