Commit 7fde48c3 authored by Andrew Gibiansky's avatar Andrew Gibiansky

Disable cabal test on ghc 7.10

parent 37e6f3cb
...@@ -51,7 +51,10 @@ script: ...@@ -51,7 +51,10 @@ script:
# Build and run the test suite # Build and run the test suite
- travis_retry cabal install --only-dependencies --enable-tests - travis_retry cabal install --only-dependencies --enable-tests
- travis_retry cabal configure --enable-tests - travis_retry cabal configure --enable-tests
- travis_retry cabal test --show-details=always - |
if [ ${GHCVER%.*} = "7.8" ]; then
travis_retry cabal test --show-details=always
fi
- | - |
if [ ${GHCVER%.*} = "7.8" ]; then if [ ${GHCVER%.*} = "7.8" ]; then
./verify_formatting.py ./verify_formatting.py
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment