From 533148bb7e524e9d41f012c9b6867ab34738db59 Mon Sep 17 00:00:00 2001 From: Nikhil Thorat Date: Wed, 4 Mar 2020 14:50:09 -0500 Subject: [PATCH] Change test-integration to look for run-ci. --- tfjs-core/scripts/test-integration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tfjs-core/scripts/test-integration.js b/tfjs-core/scripts/test-integration.js index d11e8e7abfe..09cb0a3ecaf 100755 --- a/tfjs-core/scripts/test-integration.js +++ b/tfjs-core/scripts/test-integration.js @@ -22,7 +22,7 @@ function shouldRunIntegration() { if (process.env.NIGHTLY === 'true') { return true; } - const diffFile = 'diff'; + const diffFile = 'run-ci'; if (!fs.existsSync(diffFile)) { return false; }