Skip to content

Commit

Permalink
Revert "Get rid of temporary testing workarounds haskell/cabal#1810"
Browse files Browse the repository at this point in the history
This reverts commit 189bb1d.
  • Loading branch information
snoyberg committed Jun 2, 2014
1 parent cd5dcc2 commit 200d0db
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Stackage/Test.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 200d0db

Please sign in to comment.