Skip to content

Commit 5b28385

Browse files
committed
Flip test run condition
1 parent c6c8711 commit 5b28385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ script:
8484
- if [ -f configure.ac ]; then autoreconf -i; fi
8585
- cabal configure --enable-tests $TESTS --enable-benchmarks -v2 # -v2 provides useful information for debugging
8686
- cabal build # this builds all libraries and executables (including tests/benchmarks)
87-
- if [ "$TESTS" = '--disable-tests' ]; then cabal test; fi
87+
- if [ "$TESTS" != '--disable-tests' ]; then cabal test; fi
8888
# - cabal check
8989
- cabal sdist # tests that a source-distribution can be generated
9090

0 commit comments

Comments
 (0)