From cfed218090486fc2bce59a1ea844d8887dcdbd29 Mon Sep 17 00:00:00 2001 From: Zongheng Yang Date: Tue, 1 Nov 2016 14:22:19 -0800 Subject: [PATCH] Remove the ckpt existence test in test_tutorials.sh. It's a weak test + causes complications if we consider both V1 & V2. Change: 137878590 --- tensorflow/tools/ci_build/builds/test_tutorials.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tensorflow/tools/ci_build/builds/test_tutorials.sh b/tensorflow/tools/ci_build/builds/test_tutorials.sh index 3c83f5dbe16..0b0af5a189e 100755 --- a/tensorflow/tools/ci_build/builds/test_tutorials.sh +++ b/tensorflow/tools/ci_build/builds/test_tutorials.sh @@ -198,13 +198,6 @@ test_cifar10_train() { return 1 fi - # Check ckpt files - if [[ ! -f "${TUT_TEST_ROOT}/cifar10_train/model.ckpt-0.index" ]] || - [[ ! -f "${TUT_TEST_ROOT}/cifar10_train/model.ckpt-49.index" ]]; then - echo "FAILED: cifar10_train did not generate expected model checkpoint files" - return 1 - fi - return 0 } -- GitLab