From 5745ac61fb0b18ed372c7ac01bd6b65e19cad71a Mon Sep 17 00:00:00 2001 From: Jon Simantov Date: Mon, 29 Mar 2021 21:08:05 -0700 Subject: [PATCH 1/2] Don't run the internal integration tests on the packaged SDK. --- scripts/gha/build_testapps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gha/build_testapps.py b/scripts/gha/build_testapps.py index a79d03d496..bad2a3fc53 100644 --- a/scripts/gha/build_testapps.py +++ b/scripts/gha/build_testapps.py @@ -224,7 +224,7 @@ def main(argv): failures = [] for testapp in testapps: api_config = config.get_api(testapp) - if FLAGS.repo_dir and api_config.internal_testapp_path: + if FLAGS.packaged_sdk and api_config.internal_testapp_path: testapp_dirs = [api_config.internal_testapp_path] else: testapp_dirs = [api_config.testapp_path] From 93b53b2f9cc24c778f7d20628b71841e4f6ccdb7 Mon Sep 17 00:00:00 2001 From: Jon Simantov Date: Mon, 29 Mar 2021 21:30:44 -0700 Subject: [PATCH 2/2] Fix check. --- scripts/gha/build_testapps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gha/build_testapps.py b/scripts/gha/build_testapps.py index bad2a3fc53..8303a82df2 100644 --- a/scripts/gha/build_testapps.py +++ b/scripts/gha/build_testapps.py @@ -224,7 +224,7 @@ def main(argv): failures = [] for testapp in testapps: api_config = config.get_api(testapp) - if FLAGS.packaged_sdk and api_config.internal_testapp_path: + if FLAGS.repo_dir and not FLAGS.packaged_sdk and api_config.internal_testapp_path: testapp_dirs = [api_config.internal_testapp_path] else: testapp_dirs = [api_config.testapp_path]