]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Use env toggles to disable some regression tests in Travis 8523/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Tue, 5 Nov 2019 15:48:36 +0000 (16:48 +0100)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Tue, 12 Nov 2019 09:35:34 +0000 (10:35 +0100)
build-scripts/travis.sh

index 5eab3c43ed1d0dde765392280a04a76a9d0f8ca3..5ff53e2cbe61c3c913e909ebec4c6a9d8cf64d3c 100755 (executable)
@@ -632,7 +632,9 @@ test_recursor() {
 
 test_dnsdist(){
   run "cd regression-tests.dnsdist"
-  run "DNSDISTBIN=$HOME/dnsdist/bin/dnsdist ./runtests -v --ignore-files='(?:^\.|^_,|^setup\.py$|^test_DOH\.py$|^test_OCSP\.py$|^test_Prometheus\.py$|^test_TLSSessionResumption\.py$)'"
+  export SKIP_DOH_TESTS=1
+  export SKIP_PROMETHEUS_TESTS=1
+  run "DNSDISTBIN=$HOME/dnsdist/bin/dnsdist ./runtests -v --ignore-files='(?:^\.|^_,|^setup\.py$|^test_TLSSessionResumption\.py$)'"
   run "rm -f ./DNSCryptResolver.cert ./DNSCryptResolver.key"
   run "cd .."
 }