From ef90ea5ccac81072fd3a14e7630964173e1a8a5c Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Thu, 26 May 2016 09:48:07 -0800 Subject: [PATCH] Adding documentation on integration testing. Change: 123334131 --- tensorflow/contrib/ffmpeg/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tensorflow/contrib/ffmpeg/README.md b/tensorflow/contrib/ffmpeg/README.md index cf64c50ee7f..b3e6af0e387 100644 --- a/tensorflow/contrib/ffmpeg/README.md +++ b/tensorflow/contrib/ffmpeg/README.md @@ -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 +```