Use show-details=streaming

This commit is contained in:
Michael Snoyman 2014-05-29 06:53:04 +03:00
parent 7d79b2ea7f
commit 2376cb81c6

View File

@ -116,7 +116,10 @@ runTestSuite settings testdir (packageName, SelectedPackageInfo {..}) = do
getHandle AppendMode $ run "cabal" (addCabalArgs settings BSTest ["configure", "--enable-tests"]) dir
when spiHasTests $ do
getHandle AppendMode $ run "cabal" ["build"] dir
getHandle AppendMode $ runGhcPackagePath "cabal" ["test"] dir
getHandle AppendMode $ runGhcPackagePath "cabal"
[ "test"
, "--show-details=streaming" -- FIXME temporary workaround for https://github.com/haskell/cabal/issues/1810
] dir
when (buildDocs settings) $
getHandle AppendMode $ run "cabal" ["haddock"] dir
return True