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:
Martin Weinelt
2022-06-05 17:59:27 +02:00
parent 1b467b894b
commit 3fcf9f18dd

View File

@@ -60,6 +60,9 @@ buildPythonPackage rec {
# Fail on Hydra, see https://github.com/NixOS/nixpkgs/pull/130785 # Fail on Hydra, see https://github.com/NixOS/nixpkgs/pull/130785
"test_bpo_2142_workaround" "test_bpo_2142_workaround"
"test_skip_magic_trailing_comma" "test_skip_magic_trailing_comma"
] ++ lib.optionals (stdenv.isLinux && stdenv.isAarch64) [
# exceeds max open files on hydra builders
"test_blackd_supported_version"
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [