aboutsummaryrefslogtreecommitdiff
path: root/Test.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Test.hs')
-rw-r--r--Test.hs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Test.hs b/Test.hs
index 0d8e0e3ef..73fd3c003 100644
--- a/Test.hs
+++ b/Test.hs
@@ -13,7 +13,6 @@ import Test.Tasty
import Test.Tasty.Runners
import Test.Tasty.HUnit
import Test.Tasty.QuickCheck
-import Test.Tasty.Ingredients.Rerun
import Data.Monoid
import Options.Applicative hiding (command)
@@ -107,7 +106,7 @@ main ps = do
ingredients :: [Ingredient]
ingredients =
- [ rerunningTests [consoleTestReporter]
+ [ consoleTestReporter
, listingTests
]
@@ -1270,7 +1269,7 @@ withTestEnv forcedirect = withResource prepare release
where
prepare = do
env <- prepareTestEnv forcedirect
- case tryIngredients [consoleTestReporter] mempty (initTests env) of
+ case tryIngredients ingredients mempty (initTests env) of
Nothing -> error "No tests found!?"
Just act -> unlessM act $
error "init tests failed! cannot continue"