summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 4d84d5894..d9b36a7ca 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -78,7 +78,7 @@ matrix:
- os: linux
compiler: clang
dist: trusty
- env: T=debug C="--with-nss --without-ssl"
+ env: T=debug C="--with-nss --without-ssl" NOTESTS=1
- os: linux
compiler: gcc
dist: trusty
@@ -241,7 +241,9 @@ script:
if [ "$T" = "debug" ]; then
./configure --enable-debug $C
make && make examples
- make TFLAGS=-n test-nonflaky
+ if [ -z $NOTESTS ]; then
+ make TFLAGS=-n test-nonflaky
+ fi
fi
- |
set -eo pipefail