From 00da93941f3ee154fbbb658ab2e86f5c41c8ffab Mon Sep 17 00:00:00 2001 From: Andrew Z Allen Date: Mon, 1 Oct 2018 15:09:12 -0600 Subject: [PATCH] Disable non-hermetic diff testing in travis. In support of #762 --- .travis.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 76757804e00..86cc80df77f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,15 +38,6 @@ before_script: - test "${USE_BAZEL}" = true || (cd examples/browser && npm install) script: - # Make sure examples of generated files are up-to-date - - test "${USE_BAZEL}" = true || - (make realclean && make examples SWAGGER_CODEGEN="java -jar $HOME/local/swagger-codegen-cli.jar") - - if [ -z "${USE_BAZEL}" ] && - (go version | grep -q "${GO_VERSION_TO_DIFF_TEST}") && - [ -z "${GATEWAY_PLUGIN_FLAGS}" ]; then - test -z "$(git status --porcelain)" || (git status; git diff; exit 1); - fi - # Unit tests, integration tests and code health checks - test "${USE_BAZEL}" = true || env GLOG_logtostderr=1 go test -race -v github.com/grpc-ecosystem/grpc-gateway/...