diff options
author | Joey Hess <joey@kitenet.net> | 2014-01-27 13:58:43 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-01-27 13:58:43 -0400 |
commit | 65eb61a902ecf68da69d774063fea4880f619a13 (patch) | |
tree | e3cd79328166fbc58c72c469cf1dd1dab84087c1 /Test.hs | |
parent | cb7095393ab903a15ad36c5e1cf2b5a2a297745f (diff) |
temporarily revert tasty-rerun support for this release5.20140127
revert 852f1f6cea85a7c781c8286f459023bdacebe021
tasty-rerun is stuck in NEW in debian
Diffstat (limited to 'Test.hs')
-rw-r--r-- | Test.hs | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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" |