Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/test_matrix_variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ def test_matrix_sum_result(axis, keepdims):
assert np_res.shape == scip_res.shape


@pytest.mark.skip(reason="Performance test")
@pytest.mark.parametrize("n", [100])
def test_matrix_sum_axis_is_none_performance(n):
model = Model()
Expand All @@ -272,6 +273,7 @@ def test_matrix_sum_axis_is_none_performance(n):
assert model.isGE(orig * 1.25, matrix)


@pytest.mark.skip(reason="Performance test")
@pytest.mark.parametrize("n", [100])
def test_matrix_sum_axis_not_none_performance(n):
model = Model()
Expand All @@ -286,6 +288,7 @@ def test_matrix_sum_axis_not_none_performance(n):
assert model.isGE(orig * 1.25, matrix)


@pytest.mark.skip(reason="Performance test")
@pytest.mark.parametrize("n", [100])
def test_matrix_mean_performance(n):
model = Model()
Expand All @@ -308,6 +311,7 @@ def test_matrix_mean():
assert isinstance(x.mean(1), MatrixExpr)


@pytest.mark.skip(reason="Performance test")
@pytest.mark.parametrize("n", [100])
def test_matrix_dot_performance(n):
model = Model()
Expand Down
Loading