Skip to content

Commit fa376e5

Browse files
committed
Skip test on python 3.9
1 parent 2d7dbe2 commit fa376e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pySDC/tests/test_problems/test_RayleighBenard3D.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import pytest
2+
import sys
23

34

45
@pytest.mark.mpi4py
@@ -203,6 +204,7 @@ def test_libraries():
203204

204205

205206
@pytest.mark.mpi4py
207+
@pytest.mark.skipif(sys.version_info < (3, 10), reason="requires python3.10 or higher")
206208
@pytest.mark.parametrize('preconditioning', [True, False])
207209
def test_banded_matrix(preconditioning):
208210
from pySDC.implementations.problem_classes.RayleighBenard3D import RayleighBenard3D
@@ -224,7 +226,6 @@ def test_banded_matrix(preconditioning):
224226
LU = sp.splu(A)
225227
for me in [LU.L, LU.U]:
226228

227-
print(sp.spbandwidth(me), bandwidth)
228229
assert max(sp.spbandwidth(me)) <= max(
229230
bandwidth
230231
), 'One-sided bandwidth of LU decomposition is larger than that of the full matrix!'

0 commit comments

Comments
 (0)