From 4c6fb837938be3203164f6ba98da81aa0b29aa55 Mon Sep 17 00:00:00 2001 From: Ana Gelez Date: Mon, 10 Aug 2020 17:06:14 +0200 Subject: [PATCH] Change another network name --- .drone.jsonnet | 2 +- script/browser_test/utils.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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)