diff --git a/.drone.jsonnet b/.drone.jsonnet index cb9f440a..44d3dd6e 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -151,7 +151,7 @@ local Integration(db) = basePipeline( detach: true, }, { - name: "integration-" + db, + name: "integration", image: plumeEnv, environment: { BROWSER: "firefox", diff --git a/script/browser_test/utils.py b/script/browser_test/utils.py index c80584a6..fcdfb6fb 100644 --- a/script/browser_test/utils.py +++ b/script/browser_test/utils.py @@ -20,4 +20,5 @@ class Browser(unittest.TestCase): self.driver.close() def get(self, url): - return self.driver.get("https://localhost" + url) + # Like "selenium", integration is mapped to the container that runs the plume instance + return self.driver.get("https://integration" + url)