python3Packages.distutils: disable failing tests

This commit is contained in:
Martin Weinelt
2026-05-30 03:53:11 +02:00
parent f3964c18d6
commit 604a2a80c0
@@ -72,7 +72,12 @@ buildPythonPackage {
# jaraco-path depends ob pyobjc
doCheck = !stdenv.hostPlatform.isDarwin;
disabledTests = lib.optionals (pythonAtLeast "3.14") [
disabledTests = [
# TypeError: byte_compile() got an unexpected keyword argument 'dry_run'
"test_byte_compile"
"test_byte_compile_optimized"
]
++ lib.optionals (pythonAtLeast "3.14") [
# AssertionError: assert '(?s:foo[^/]*)\\z' == '(?s:foo[^/]*)\\Z'
"test_glob_to_re"
];