File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ def setUp(self):
49
49
self .mat2 = test_rhs .copy ()
50
50
self .mat3 = test_expected_solution .copy ()
51
51
52
- @unittest .skipIf (os .getenv ("GITHUB_ACTIONS" , None ) is None )
52
+ @unittest .skipIf (os .getenv ("GITHUB_ACTIONS" , None ) is None , 'NOT ON CI' )
53
53
def test_cg_solver_square_perfect (self ):
54
54
mat3 = np .linalg .lstsq (self .mat1 .toarray (), test_rhs , rcond = None )[0 ]
55
55
@@ -61,7 +61,7 @@ def test_cg_solver_square_perfect(self):
61
61
npt .assert_array_equal (test_rhs , self .mat2 )
62
62
npt .assert_array_almost_equal (x , mat3 )
63
63
64
- @unittest .skipIf (os .getenv ("GITHUB_ACTIONS" , None ) is None )
64
+ @unittest .skipIf (os .getenv ("GITHUB_ACTIONS" , None ) is None , 'NOT ON CI' )
65
65
def test_cg_wrapper_square_perfect (self ):
66
66
67
67
mat3 = np .linalg .lstsq (self .mat1 .toarray (), test_rhs , rcond = None )[0 ]
You can’t perform that action at this time.
0 commit comments