Create an integration_testing directory for tests that are only run on nightly and release pip packages.

PiperOrigin-RevId: 303205376
Change-Id: Ia499858d32ac9e469d6412dbff7ea012d0fa34b2
This commit is contained in:
Amit Patankar 2020-03-26 15:21:14 -07:00 committed by TensorFlower Gardener
parent e0e1195f21
commit 5a86c051d3
2 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,9 @@
# Description:
# This directory is only for tests that should be run on a pip whl.
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
)
exports_files(["LICENSE"])

View File

@ -15,4 +15,4 @@
#!/bin/bash
set -x
DEFAULT_BAZEL_TARGETS="//tensorflow/... -//tensorflow/compiler/tf2tensorrt/... -//tensorflow/compiler/xrt/... //tensorflow/compiler/mlir/lite/..."
DEFAULT_BAZEL_TARGETS="//tensorflow/... -//tensorflow/python/integration_testing/... -//tensorflow/compiler/tf2tensorrt/... -//tensorflow/compiler/xrt/... //tensorflow/compiler/mlir/lite/..."