Skip to content

Commit 31b1cb5

Browse files
committed
Leave only -inf norm
1 parent f914622 commit 31b1cb5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

dpnp/tests/test_usm_type.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,9 +574,10 @@ def test_meshgrid(usm_type_x, usm_type_y):
574574

575575

576576
@pytest.mark.parametrize("usm_type", list_of_usm_types, ids=list_of_usm_types)
577-
@pytest.mark.parametrize(
578-
"ord", [None, -dp.inf, -2, -1, 1, 2, 3, dp.inf, "fro", "nuc"]
579-
)
577+
# @pytest.mark.parametrize(
578+
# "ord", [None, -dp.inf, -2, -1, 1, 2, 3, dp.inf, "fro", "nuc"]
579+
# )
580+
@pytest.mark.parametrize("ord", [-dp.inf])
580581
@pytest.mark.parametrize(
581582
"axis",
582583
[-1, 0, 1, (0, 1), (-2, -1), None],

0 commit comments

Comments
 (0)