don't run Chrome integration tests on Travis

This commit is contained in:
Marten Seemann
2018-06-02 19:19:51 +08:00
parent 4b82db4d6d
commit a3821af65a
2 changed files with 1 additions and 2 deletions

View File

@@ -32,7 +32,6 @@ before_install:
- go get github.com/onsi/gomega
- export GOARCH=$TRAVIS_GOARCH
- go env # for debugging
- google-chrome --version
- "printf \"quic.clemente.io certificate valid until: \" && openssl x509 -in example/fullchain.pem -enddate -noout | cut -d = -f 2"
- "export DISPLAY=:99.0"
- "Xvfb $DISPLAY &> /dev/null &"

View File

@@ -22,5 +22,5 @@ if [ ${TESTMODE} == "integration" ]; then
ginkgo -race -randomizeAllSpecs -randomizeSuites -trace benchmark -- -samples=1 -size=10
fi
# run integration tests
ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace integrationtests -skipPackage chrome
ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace -skipPackage chrome integrationtests
fi