travis: comment out cabal check for now

It complains about the -Werror enabled by the 'testing' flag,
even though the testing flag is set to manual: True, default: False
This commit is contained in:
Brent Yorgey 2015-12-22 07:51:37 -06:00
parent 9f68077c6c
commit c3b05ceb7f

View File

@ -78,7 +78,8 @@ script:
- cabal configure --enable-tests --enable-benchmarks -v2 # -v2 provides useful information for debugging - cabal configure --enable-tests --enable-benchmarks -v2 # -v2 provides useful information for debugging
- cabal build # this builds all libraries and executables (including tests/benchmarks) - cabal build # this builds all libraries and executables (including tests/benchmarks)
- cabal test - cabal test
- cabal check # - cabal check # complains about -Werror even though it is
# hidden behind a manual flag with default false
- cabal sdist # tests that a source-distribution can be generated - cabal sdist # tests that a source-distribution can be generated
# Check that the resulting source distribution can be built & installed. # Check that the resulting source distribution can be built & installed.