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:49:39 +0200
committerVladimír Čunát <v@cunat.cz>2022-06-09 08:49:39 +0200
commit9ed9ea16afb31c59d8bebe1eb3b326962425bf03 (patch)
treee28fe8e13aeab8d69dea76233403a24617e677ab /pkgs
parent421bd643854fab303ce92fe8ff468174709a4a6a (diff)
python3Packages.black: disable all tests on aarch64-linux
For now at least.  I'm tired of this channel-blocking chase:
https://github.com/NixOS/nixpkgs/pull/176991#issuecomment-1150736907
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