diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2022-06-05 17:59:27 +0200 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2022-06-06 06:19:11 +0000 |
| commit | fd7ddfc4f5e14af1922b8f7134e1546443086edc (patch) | |
| tree | 5f15ceebd4dbec5b93e6f489decf8551fbad12de | |
| parent | Merge pull request #176468 from NixOS/backport-176415-to-release-21.11 (diff) | |
| download | nixpkgs-fd7ddfc4f5e14af1922b8f7134e1546443086edc.tar.gz | |
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
(cherry picked from commit 3fcf9f18ddfdbf108b371637410821b6f388ef67)
| -rw-r--r-- | pkgs/development/python-modules/black/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/black/default.nix b/pkgs/development/python-modules/black/default.nix index ea4fb0b4a74d..366a107572d2 100644 --- a/pkgs/development/python-modules/black/default.nix +++ b/pkgs/development/python-modules/black/default.nix @@ -57,6 +57,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 = [ |
