From 77d6eb33bc462d19b719b11a90cd69819d638d6d Mon Sep 17 00:00:00 2001 From: Oliver Chang Date: Tue, 21 Sep 2021 10:10:06 +1000 Subject: Helper fixes for external projects. (#6458) - Add ":v1" suffix to Dockerfile template. - Support relative paths for external project directories. --- infra/helper_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'infra/helper_test.py') diff --git a/infra/helper_test.py b/infra/helper_test.py index bb365037..951eba47 100644 --- a/infra/helper_test.py +++ b/infra/helper_test.py @@ -165,7 +165,7 @@ class ProjectTest(fake_filesystem_unittest.TestCase): def setUp(self): self.project_name = 'project' self.internal_project = helper.Project(self.project_name) - self.external_project_path = os.path.join('path', 'to', self.project_name) + self.external_project_path = os.path.join('/path', 'to', self.project_name) self.external_project = helper.Project(self.external_project_path, is_external=True) self.setUpPyfakefs() -- cgit v1.2.3