Adding documentation on integration testing.

Change: 123334131
This commit is contained in:
A. Unique TensorFlower
2016-05-26 09:48:07 -08:00
committed by TensorFlower Gardener
parent 008d41f4cc
commit ef90ea5cca

View File

@@ -10,3 +10,17 @@ FFmpeg must be installed before these ops can be used. The ops will look for the
ffmpeg binary somewhere in `$PATH`. When the binary is unavailable, the error
`FFmpeg must be installed to run this op. FFmpeg can be found at
http://www.ffmpeg.org.` will be returned.
## Testing
In addition to the regular tests, the integration tests should also be
run on this code. First, install `docker`. Then run the integration tests:
```shell
export TF_BUILD_CONTAINER_TYPE=CPU # or GPU
export TF_BUILD_PYTHON_VERSION=PYTHON2 # or PYTHON3
export TF_BUILD_IS_OPT=OPT
export TF_BUILD_IS_PIP=PIP
export TF_BUILD_INTEGRATION_TESTS=1
tensorflow/tools/ci_build/ci_parameterized_build.sh
```