From 1090449c89dadff36aad11372ed95c1c8e663fae Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Mon, 13 Nov 2023 02:58:23 +0000 Subject: [PATCH] wgo: disable flaky tests --- pkgs/development/tools/wgo/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/tools/wgo/default.nix b/pkgs/development/tools/wgo/default.nix index 51ecc3804a05..3ed1fc89bf4e 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";