Skip to content

Commit

Permalink
Disable pstats tests also in 3.13 as long as they wait for a new C-AP…
Browse files Browse the repository at this point in the history
…I in CPython.
  • Loading branch information
scoder committed Mar 28, 2024
1 parent 27364ef commit ae120d5
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,10 +518,8 @@ def get_openmp_compiler_flags(language):
'compile.pylong', # PyLongObject changed its structure
'run.longintrepr', # PyLongObject changed its structure
]),
# See https://github.com/python/cpython/issues/104614 - fixed in Py3.12.0b2, remove eventually.
(3,12,0,'beta',1): (operator.eq, lambda x: 'cdef_multiple_inheritance' in x or 'pep442' in x),
# Profiling is broken on Python 3.12
(3,12): ((lambda actual, v3_12: actual[:2]==v3_12), (lambda x: "pstats" in x)),
# Profiling is broken on Python 3.12/3.13alpha
(3,12): (operator.gt, lambda x: "pstats" in x),
}

INCLUDE_DIRS = [ d for d in os.getenv('INCLUDE', '').split(os.pathsep) if d ]
Expand Down

0 comments on commit ae120d5

Please sign in to comment.