aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/ci_build
diff options
context:
space:
mode:
authorGravatar Amit Patankar <amitpatankar@google.com>2018-09-11 16:11:33 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-11 16:15:21 -0700
commit7648ee320291206e0dabcdaad61588de086fa87f (patch)
tree80c7492e3da040e1149dcd277dc6e9cd7ee3bff8 /tensorflow/tools/ci_build
parent7020d8752554fd54530e2fe799b55d3c0b895696 (diff)
Not running no_gpu tagged tests on GPU and not running benchmark-test for any pip builds.
PiperOrigin-RevId: 212541571
Diffstat (limited to 'tensorflow/tools/ci_build')
-rwxr-xr-xtensorflow/tools/ci_build/builds/run_pip_tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/tools/ci_build/builds/run_pip_tests.sh b/tensorflow/tools/ci_build/builds/run_pip_tests.sh
index bbaf59c69a..4b762bf258 100755
--- a/tensorflow/tools/ci_build/builds/run_pip_tests.sh
+++ b/tensorflow/tools/ci_build/builds/run_pip_tests.sh
@@ -76,7 +76,7 @@ ln -s $(pwd)/tensorflow ${PIP_TEST_ROOT}/tensorflow
# Do not run tests with "no_pip" tag. If running GPU tests, also do not run
# tests with no_pip_gpu tag.
-PIP_TEST_FILTER_TAG="-no_pip,-no_oss"
+PIP_TEST_FILTER_TAG="-no_pip,-no_oss,-benchmark-test"
if [[ ${IS_OSS_SERIAL} == "1" ]]; then
PIP_TEST_FILTER_TAG="$(echo "${PIP_TEST_FILTER_TAG}" | sed s/-no_oss//)"
PIP_TEST_FILTER_TAG="${PIP_TEST_FILTER_TAG},oss_serial"
@@ -85,7 +85,7 @@ else
fi
if [[ ${IS_GPU} == "1" ]]; then
- PIP_TEST_FILTER_TAG="-no_pip_gpu,${PIP_TEST_FILTER_TAG}"
+ PIP_TEST_FILTER_TAG="-no_gpu,-no_pip_gpu,${PIP_TEST_FILTER_TAG}"
fi
if [[ ${IS_MAC} == "1" ]]; then
PIP_TEST_FILTER_TAG="-nomac,${PIP_TEST_FILTER_TAG}"