summary refs log tree commit diff
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2022-05-20 23:51:28 +0000
committerAaron Jheng <wentworth@outlook.com>2022-05-20 23:52:27 +0000
commitfe1c235af983cb58dcfa6c684d4afd8222112142 (patch)
tree661393b6010d02aa8bacb550520f6738fe171786
parentb92533e71ac471cc341555ba188c796b3baec5e1 (diff)
downloadnixpkgs-fe1c235af983cb58dcfa6c684d4afd8222112142.tar
nixpkgs-fe1c235af983cb58dcfa6c684d4afd8222112142.tar.gz
nixpkgs-fe1c235af983cb58dcfa6c684d4afd8222112142.tar.bz2
nixpkgs-fe1c235af983cb58dcfa6c684d4afd8222112142.tar.lz
nixpkgs-fe1c235af983cb58dcfa6c684d4afd8222112142.tar.xz
nixpkgs-fe1c235af983cb58dcfa6c684d4afd8222112142.tar.zst
nixpkgs-fe1c235af983cb58dcfa6c684d4afd8222112142.zip
goconvey: tweak test flags
-rw-r--r--pkgs/development/tools/goconvey/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/tools/goconvey/default.nix b/pkgs/development/tools/goconvey/default.nix
index 802be18e566..1a8039d42b7 100644
--- a/pkgs/development/tools/goconvey/default.nix
+++ b/pkgs/development/tools/goconvey/default.nix
@@ -17,7 +17,9 @@ buildGoModule rec {
 
   ldflags = [ "-s" "-w" ];
 
-  checkFlags = [ "-short" ];
+  preCheck = ''
+    buildFlagsArray+="-short"
+  '';
 
   meta = {
     description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go";