From c3b05ceb7fa3009ebb31d530fe17f0ec3bd80d44 Mon Sep 17 00:00:00 2001 From: Brent Yorgey Date: Tue, 22 Dec 2015 07:51:37 -0600 Subject: [PATCH] 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 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e4b3afee..6b918cf8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -78,7 +78,8 @@ script: - 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 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 # Check that the resulting source distribution can be built & installed.