File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -842,7 +842,10 @@ def foo():
842
842
assert ('return' , __name__ , 'foo' , 0 ) in calls
843
843
844
844
845
- @pytest .mark .xfail (reason = "TODO: Check what's going on with Cython 3.0" )
845
+ @pytest .mark .xfail (
846
+ sys .version_info .major == 3 and sys .version_info .minor == 12 ,
847
+ reason = "broken on 3.12, see https://github.com/cython/cython/issues/5470" ,
848
+ )
846
849
def test_source_cython (LineMatcher ):
847
850
pytest .importorskip ('sample5' )
848
851
calls = []
@@ -884,6 +887,10 @@ def foo():
884
887
)
885
888
886
889
890
+ @pytest .mark .xfail (
891
+ sys .version_info .major == 3 and sys .version_info .minor == 12 ,
892
+ reason = "broken on 3.12, see https://github.com/cython/cython/issues/5470" ,
893
+ )
887
894
def test_fullsource_cython (LineMatcher ):
888
895
pytest .importorskip ('sample5' )
889
896
calls = []
You can’t perform that action at this time.
0 commit comments