Skip to content

Commit

Permalink
Get rid of temporary testing workarounds haskell/cabal#1810
Browse files Browse the repository at this point in the history
  • Loading branch information
snoyberg committed May 29, 2014
1 parent 43d339c commit 189bb1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions Stackage/Test.hs
Expand Up @@ -116,10 +116,7 @@ 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"
, "--show-details=streaming" -- FIXME temporary workaround for https://github.com/haskell/cabal/issues/1810
] dir
getHandle AppendMode $ runGhcPackagePath "cabal" ["test"] dir
when (buildDocs settings) $
getHandle AppendMode $ run "cabal" ["haddock"] dir
return True
Expand Down
2 changes: 1 addition & 1 deletion jenkins-build.sh
Expand Up @@ -7,5 +7,5 @@ cabal install Cabal
./dist/build/stackage/stackage select --no-platform
./dist/build/stackage/stackage check
./dist/build/stackage/stackage build
./dist/build/stackage/stackage test --test-threads 1
./dist/build/stackage/stackage test
./create-stackage-tarball.sh

0 comments on commit 189bb1d

Please sign in to comment.