about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2021-01-26 07:26:59 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2021-01-26 07:26:59 +1000
commita7dda29d8aba00517d98d5c964dab280315c2345 (patch)
tree91cb47345341c6d15fbf86d864e652338427597e /pkgs/applications/version-management
parent87a269015fe601dab18743ad4084d10d946a6e64 (diff)
Revert "gh: enable tests"
This reverts commit c7deb49058baaeeba60065e62487476a7f35724c.

Fails with sandboxing.
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/git-and-tools/gh/default.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/gh/default.nix b/pkgs/applications/version-management/git-and-tools/gh/default.nix
index 7c61c3329b20d..38413f990a014 100644
--- a/pkgs/applications/version-management/git-and-tools/gh/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/gh/default.nix
@@ -1,9 +1,4 @@
-{ lib
-, fetchFromGitHub
-, buildGoModule
-, installShellFiles
-, git
-}:
+{ lib, fetchFromGitHub, buildGoModule, installShellFiles }:
 
 buildGoModule rec {
   pname = "gh";
@@ -35,10 +30,8 @@ buildGoModule rec {
     done
   '';
 
-  checkInputs = [ git ];
-  checkPhase = ''
-    make test
-  '';
+  # fails with `unable to find git executable in PATH`
+  doCheck = false;
 
   meta = with lib; {
     description = "GitHub CLI tool";