python3Packages.black: disable test on aarch64-linux
This test reproducibly triggers the max open files limit on our aarch64 hydra builders. Disable it for now to make tests work again but this can't be the final solution. https://hydra.nixos.org/build/179001754
This commit is contained in:
parent
1b467b894b
commit
3fcf9f18dd
1 changed files with 3 additions and 0 deletions
|
@ -60,6 +60,9 @@ buildPythonPackage rec {
|
|||
# Fail on Hydra, see https://github.com/NixOS/nixpkgs/pull/130785
|
||||
"test_bpo_2142_workaround"
|
||||
"test_skip_magic_trailing_comma"
|
||||
] ++ lib.optionals (stdenv.isLinux && stdenv.isAarch64) [
|
||||
# exceeds max open files on hydra builders
|
||||
"test_blackd_supported_version"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
|
Loading…
Reference in a new issue