Skip to content

Commit

Permalink
updated matrix operation tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sakchal authored and syurkevi committed Apr 12, 2024
1 parent 20ea893 commit b8ac26f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/test_matrix_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from .utility_functions import check_type_supported


# det tests
@pytest.mark.parametrize(
"shape",
[(1, 1), (10, 10), (100, 100), (1000, 1000), (10000, 10000)],
Expand Down Expand Up @@ -68,7 +67,6 @@ def test_det_valid_dtype(dtype: Dtype) -> None:
assert isinstance(determinant, complex)


# inverse tests
@pytest.mark.parametrize(
"shape",
[(1, 1), (10, 10), (100, 100), (1000, 1000), (10000, 10000)],
Expand Down Expand Up @@ -125,7 +123,6 @@ def test_inverse_valid_dtype(dtype: Dtype) -> None:
wrapper.inverse(arr, wrapper.MatProp(0))


# norm tests
@pytest.mark.parametrize(
"shape",
[(1, 1), (10, 10), (100, 100), (1000, 1000), (10000, 10000)],
Expand Down

0 comments on commit b8ac26f

Please sign in to comment.