summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-08-08 15:52:28 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-08-08 15:52:28 -0700
commit8bcaea5bd18c4dc26319d9ee9cb5c39de0ba2ed3 (patch)
treedecbe77f72ff0b1b7bdf2393ee4eca24355e3c28
parentf78b5a4a5a885f45a0934e436647af5d8a52c1fc (diff)
Travis: call test program directly rather than by cabal.
-rw-r--r--.travis.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 9a67ac32b..0932bab44 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -35,5 +35,8 @@ script:
fi
- cabal-$CABALVER configure --enable-tests -v2 # -v2 provides useful information for debugging
- cabal-$CABALVER build $JOPTS --ghc-options=$GHCOPTS # this builds all libraries and executables (including tests/benchmarks)
- - cabal-$CABALVER test
+# Since we're having problems with "cabal version changed" on ghc 7.10
+# on travis, let's temporarily just call the test program directly:
+# - cabal-$CABALVER test
+ - dist/build/test-pandoc/test-pandoc
- cabal-$CABALVER check