From ee02937dabd9151d1cfd4469f61dd92d9556b33a Mon Sep 17 00:00:00 2001 From: Sanjoy Das Date: Wed, 30 Dec 2020 09:50:15 -0800 Subject: [PATCH] Make DEFAULT_BAZEL_TARGETS multi-line This makes diffs more readable. PiperOrigin-RevId: 349569970 Change-Id: I32a35e2e701d3fa5df4cc3b7642b87df57260d30 --- .../tools/ci_build/build_scripts/DEFAULT_TEST_TARGETS.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tensorflow/tools/ci_build/build_scripts/DEFAULT_TEST_TARGETS.sh b/tensorflow/tools/ci_build/build_scripts/DEFAULT_TEST_TARGETS.sh index bb95df86342..6d17f0850dd 100755 --- a/tensorflow/tools/ci_build/build_scripts/DEFAULT_TEST_TARGETS.sh +++ b/tensorflow/tools/ci_build/build_scripts/DEFAULT_TEST_TARGETS.sh @@ -15,4 +15,10 @@ #!/bin/bash set -x -DEFAULT_BAZEL_TARGETS="//tensorflow/... -//tensorflow/python/integration_testing/... -//tensorflow/compiler/tf2tensorrt/... -//tensorflow/compiler/xrt/... //tensorflow/compiler/mlir/lite/... -//tensorflow/lite/micro/examples/... -//tensorflow/core/tpu/..." +DEFAULT_BAZEL_TARGETS="//tensorflow/... \ +-//tensorflow/python/integration_testing/... \ +-//tensorflow/compiler/tf2tensorrt/... \ +-//tensorflow/compiler/xrt/... \ +//tensorflow/compiler/mlir/lite/... \ +-//tensorflow/lite/micro/examples/... \ +-//tensorflow/core/tpu/..."