aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/build_specified_commit_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/build_specified_commit_test.py')
-rw-r--r--infra/build_specified_commit_test.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/infra/build_specified_commit_test.py b/infra/build_specified_commit_test.py
index 808bcc21..13ca7b6e 100644
--- a/infra/build_specified_commit_test.py
+++ b/infra/build_specified_commit_test.py
@@ -69,11 +69,12 @@ class BuildImageIntegrationTests(unittest.TestCase):
def test_detect_main_repo_from_commit(self):
"""Test the detect main repo function from build specific commit module."""
for example_repo in test_repos.TEST_REPOS:
- repo_origin, repo_name = build_specified_commit.detect_main_repo(
- example_repo.project_name, commit=example_repo.new_commit)
- self.assertEqual(repo_origin, example_repo.git_url)
- self.assertEqual(repo_name,
- os.path.join('/src', example_repo.oss_repo_name))
+ if example_repo.new_commit:
+ repo_origin, repo_name = build_specified_commit.detect_main_repo(
+ example_repo.project_name, commit=example_repo.new_commit)
+ self.assertEqual(repo_origin, example_repo.git_url)
+ self.assertEqual(repo_name,
+ os.path.join('/src', example_repo.oss_repo_name))
repo_origin, repo_name = build_specified_commit.detect_main_repo(
test_repos.INVALID_REPO.project_name,