From 3bdc6cc433dcccafc9340e9b5b3bd1a02425a982 Mon Sep 17 00:00:00 2001 From: Thomas Van Lenten <4322804+ngiloq6@users.noreply.github.com> Date: Wed, 14 Mar 2018 13:25:35 -0400 Subject: [PATCH] Drop the rc file flag. Hopefully no file(s) exists on travis, and with the changes coming in bazel (https://github.com/bazelbuild/bazel/issues/4502#issuecomment-372697374) trying to ensure no files will become version dependent. --- .travis_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis_build.sh b/.travis_build.sh index 07e71c8..bae96b4 100755 --- a/.travis_build.sh +++ b/.travis_build.sh @@ -19,7 +19,7 @@ set -eu # ------------------------------------------------------------------------------------------------- # Asked to do a bazel build. if [[ -n "${BAZEL:-}" ]]; then - bazel --bazelrc=/dev/null test --show_progress_rate_limit=30.0 //... + bazel test --show_progress_rate_limit=30.0 //... fi # -------------------------------------------------------------------------------------------------