Skip to content

Commit 39e271b

Browse files
committed
Skip FGMRES too
1 parent d54deb8 commit 39e271b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sparse_dot_mkl/tests/test_iss.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ def setUp(self):
8181
self.mat2 = test_rhs.copy()
8282
self.mat3 = test_expected_solution.copy()
8383

84+
@unittest.skipIf(os.getenv("GITHUB_ACTIONS", None) is not None, 'NOT ON CI')
8485
def test_fgmres_solver_square_perfect(self):
8586
mat3 = np.linalg.lstsq(self.mat1.toarray(), test_rhs, rcond=None)[0]
8687

@@ -92,6 +93,7 @@ def test_fgmres_solver_square_perfect(self):
9293
npt.assert_array_equal(test_rhs, self.mat2)
9394
npt.assert_array_almost_equal(x, mat3)
9495

96+
@unittest.skipIf(os.getenv("GITHUB_ACTIONS", None) is not None, 'NOT ON CI')
9597
def test_fgmres_wrapper_square_perfect(self):
9698

9799
mat3 = np.linalg.lstsq(self.mat1.toarray(), test_rhs, rcond=None)[0]

0 commit comments

Comments
 (0)