Skip to content

Commit 5f931bc

Browse files
authored
Don't run the internal integration tests on the packaged SDK. (#350)
* Don't run the internal integration tests on the packaged SDK.
1 parent 3944b11 commit 5f931bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/gha/build_testapps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def main(argv):
224224
failures = []
225225
for testapp in testapps:
226226
api_config = config.get_api(testapp)
227-
if FLAGS.repo_dir and api_config.internal_testapp_path:
227+
if FLAGS.repo_dir and not FLAGS.packaged_sdk and api_config.internal_testapp_path:
228228
testapp_dirs = [api_config.internal_testapp_path]
229229
else:
230230
testapp_dirs = [api_config.testapp_path]

0 commit comments

Comments
 (0)