Skip to content

Commit ad09ca6

Browse files
committed
Fix test skip
1 parent f099f24 commit ad09ca6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sparse_dot_mkl/tests/test_iss.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def setUp(self):
4949
self.mat2 = test_rhs.copy()
5050
self.mat3 = test_expected_solution.copy()
5151

52-
@unittest.skipIf(os.getenv("GITHUB_ACTIONS", None) is None)
52+
@unittest.skipIf(os.getenv("GITHUB_ACTIONS", None) is None, 'NOT ON CI')
5353
def test_cg_solver_square_perfect(self):
5454
mat3 = np.linalg.lstsq(self.mat1.toarray(), test_rhs, rcond=None)[0]
5555

@@ -61,7 +61,7 @@ def test_cg_solver_square_perfect(self):
6161
npt.assert_array_equal(test_rhs, self.mat2)
6262
npt.assert_array_almost_equal(x, mat3)
6363

64-
@unittest.skipIf(os.getenv("GITHUB_ACTIONS", None) is None)
64+
@unittest.skipIf(os.getenv("GITHUB_ACTIONS", None) is None, 'NOT ON CI')
6565
def test_cg_wrapper_square_perfect(self):
6666

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

0 commit comments

Comments
 (0)