about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2022-06-09 08:53:35 +0200
committerVladimír Čunát <v@cunat.cz>2022-06-09 08:53:35 +0200
commit70b752efe11d5f79873c9b0a6db1a0abb0124a8b (patch)
tree8b7621c9da198a319ce81a49edd1d2faaa5a4783 /pkgs
parent438687abb85305e2ad32aa6d06b55e9b88339d8b (diff)
parent9ed9ea16afb31c59d8bebe1eb3b326962425bf03 (diff)
Merge #176995: python3Packages.black: disable all tests on aarch64-linux
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/black/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/black/default.nix b/pkgs/development/python-modules/black/default.nix
index f47c8849cfc13..ea5cd735577e9 100644
--- a/pkgs/development/python-modules/black/default.nix
+++ b/pkgs/development/python-modules/black/default.nix
@@ -60,11 +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) [
-    # they exceed max open files on hydra builders
-    "test_blackd_supported_version"
-    "test_cors_headers_present"
   ];
+  # multiple tests exceed max open files on hydra builders
+  doCheck = !(stdenv.isLinux && stdenv.isAarch64);
 
   propagatedBuildInputs = [
     aiohttp