python3Packages.distutils: disable failing tests
This commit is contained in:
@@ -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"
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user