From 17c767c43ce610ac3ec8f3a3b43472c9cde4e466 Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Fri, 7 Mar 2025 21:10:44 -0600 Subject: [PATCH] hangs on a verbose check on nix --- src/HushGP/PushTests/IntTests.hs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/HushGP/PushTests/IntTests.hs b/src/HushGP/PushTests/IntTests.hs index 82e4544..6bb8741 100644 --- a/src/HushGP/PushTests/IntTests.hs +++ b/src/HushGP/PushTests/IntTests.hs @@ -4,11 +4,14 @@ import HushGP.State import HushGP.Instructions.IntInstructions -- import HushGP.PushTests.GenericTests import Control.Lens hiding (uncons) +import System.Environment import Test.Tasty import Test.Tasty.QuickCheck as QC main :: IO () -main = defaultMain intTests +main = do + setEnv "TASTY_QUICKCHECK_VERBOSE" "False" + defaultMain intTests -- |Holds the tree for property and unit tests. intTests :: TestTree