fixed verbose hanging problem

This commit is contained in:
Rowan Torbitzky-Lane 2025-03-07 21:44:44 -06:00
parent 17c767c43c
commit 95786d0c93

View File

@ -2,7 +2,6 @@ module HushGP.PushTests.IntTests where
import HushGP.State import HushGP.State
import HushGP.Instructions.IntInstructions import HushGP.Instructions.IntInstructions
-- import HushGP.PushTests.GenericTests
import Control.Lens hiding (uncons) import Control.Lens hiding (uncons)
import System.Environment import System.Environment
import Test.Tasty import Test.Tasty
@ -10,7 +9,8 @@ import Test.Tasty.QuickCheck as QC
main :: IO () main :: IO ()
main = do main = do
setEnv "TASTY_QUICKCHECK_VERBOSE" "False" setEnv "TASTY_QUICKCHECK_MAX_SIZE" "10"
setEnv "TASTY_QUICKCHECK_VERBOSE" "True"
defaultMain intTests defaultMain intTests
-- |Holds the tree for property and unit tests. -- |Holds the tree for property and unit tests.