about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2023-11-13 02:58:23 +0000
committerAaron Jheng <wentworth@outlook.com>2023-11-13 02:58:23 +0000
commit1090449c89dadff36aad11372ed95c1c8e663fae (patch)
tree6a9d1a2cb965bbbbf6103014cbd8e8f2f10f72af /pkgs/development
parentc78186e36251ddbae7799c9c5307d3c8cc2de1ac (diff)
wgo: disable flaky tests
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/wgo/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/tools/wgo/default.nix b/pkgs/development/tools/wgo/default.nix
index 51ecc3804a056..3ed1fc89bf4ea 100644
--- a/pkgs/development/tools/wgo/default.nix
+++ b/pkgs/development/tools/wgo/default.nix
@@ -23,6 +23,12 @@ buildGoModule {
 
   subPackages = [ "." ];
 
+  checkFlags = [
+    # Flaky tests.
+    # See https://github.com/bokwoon95/wgo/blob/e0448e04b6ca44323f507d1aca94425b7c69803c/START_HERE.md?plain=1#L26.
+    "-skip=TestWgoCmd_FileEvent"
+  ];
+
   meta = with lib; {
     description = "Live reload for Go apps";
     homepage = "https://github.com/bokwoon95/wgo";