File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
pySDC/tests/test_problems Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 11import 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 ])
207209def 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!'
You can’t perform that action at this time.
0 commit comments