summary refs log tree commit diff
path: root/pkgs/tools/misc/mmake
diff options
context:
space:
mode:
authorBerk D. Demir <bdd@mindcast.org>2022-05-01 23:15:08 +0000
committerBerk D. Demir <bdd@mindcast.org>2022-06-01 00:52:20 +0000
commit7f2ef311e2e3eb04f127cf0059aa1f2720904c69 (patch)
tree5d2e4030000bd58acb75ac345334571068ec7cdc /pkgs/tools/misc/mmake
parent1b748f081ad7ef034ce6c7438305d9957e771aec (diff)
downloadnixpkgs-7f2ef311e2e3eb04f127cf0059aa1f2720904c69.tar
nixpkgs-7f2ef311e2e3eb04f127cf0059aa1f2720904c69.tar.gz
nixpkgs-7f2ef311e2e3eb04f127cf0059aa1f2720904c69.tar.bz2
nixpkgs-7f2ef311e2e3eb04f127cf0059aa1f2720904c69.tar.lz
nixpkgs-7f2ef311e2e3eb04f127cf0059aa1f2720904c69.tar.xz
nixpkgs-7f2ef311e2e3eb04f127cf0059aa1f2720904c69.tar.zst
nixpkgs-7f2ef311e2e3eb04f127cf0059aa1f2720904c69.zip
mmake: Disable non-localhost network access tests
Bug fixed by #173702 runs the previously skipped tests for this
package.
Diffstat (limited to 'pkgs/tools/misc/mmake')
-rw-r--r--pkgs/tools/misc/mmake/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/misc/mmake/default.nix b/pkgs/tools/misc/mmake/default.nix
index 2172b8b958c..b95033bea24 100644
--- a/pkgs/tools/misc/mmake/default.nix
+++ b/pkgs/tools/misc/mmake/default.nix
@@ -15,7 +15,8 @@ buildGoModule rec {
 
   ldflags = [ "-s" "-w" ];
 
-  checkFlags = [ "-short" ];
+  # Almost all tests require non-local networking, trying to resolve githubusercontent.com.
+  doCheck = false;
 
   meta = with lib; {
     homepage = "https://github.com/tj/mmake";