Skip to content

Commit f37a867

Browse files
committed
Mute test failining due to SAT-7978
1 parent a472abe commit f37a867

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

dpnp/tests/test_arraycreation.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
assert_dtype_allclose,
2020
get_all_dtypes,
2121
get_array,
22+
is_lts_driver,
23+
is_win_platform,
2224
)
2325
from .third_party.cupy import testing
2426

@@ -913,6 +915,10 @@ def test_geomspace_num0():
913915
@pytest.mark.parametrize("num", [2, 4, 8, 3, 9, 27])
914916
@pytest.mark.parametrize("endpoint", [True, False])
915917
def test_logspace(dtype, num, endpoint):
918+
if not is_win_platform() and is_lts_driver():
919+
if dpnp.issubdtype(dtype, dpnp.integer) and num in [8, 27] and endpoint is True:
920+
pytest.skip("SAT-7978")
921+
916922
start = 2
917923
stop = 5
918924
base = 2

0 commit comments

Comments
 (0)