We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d54deb8 commit 39e271bCopy full SHA for 39e271b
sparse_dot_mkl/tests/test_iss.py
@@ -81,6 +81,7 @@ def setUp(self):
81
self.mat2 = test_rhs.copy()
82
self.mat3 = test_expected_solution.copy()
83
84
+ @unittest.skipIf(os.getenv("GITHUB_ACTIONS", None) is not None, 'NOT ON CI')
85
def test_fgmres_solver_square_perfect(self):
86
mat3 = np.linalg.lstsq(self.mat1.toarray(), test_rhs, rcond=None)[0]
87
@@ -92,6 +93,7 @@ def test_fgmres_solver_square_perfect(self):
92
93
npt.assert_array_equal(test_rhs, self.mat2)
94
npt.assert_array_almost_equal(x, mat3)
95
96
97
def test_fgmres_wrapper_square_perfect(self):
98
99
0 commit comments