This is an automated email from the ASF dual-hosted git repository.
sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git
The following commit(s) were added to refs/heads/main by this push:
new c21981f Make e2e tests use their own context
c21981f is described below
commit c21981fc0c3a0714ea94dd6a8430b71b891b19cf
Author: Sean B. Palmer <[email protected]>
AuthorDate: Mon Jan 12 16:41:09 2026 +0000
Make e2e tests use their own context
---
tests/Dockerfile.e2e | 2 +-
tests/docker-compose.yml | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/tests/Dockerfile.e2e b/tests/Dockerfile.e2e
index a66133b..15e22c5 100644
--- a/tests/Dockerfile.e2e
+++ b/tests/Dockerfile.e2e
@@ -2,5 +2,5 @@ FROM mcr.microsoft.com/playwright/python:v1.57.0-noble
RUN pip3 install --no-cache-dir --break-system-packages pytest
pytest-playwright
-COPY tests/e2e /run/tests/e2e
+COPY . /run/tests/e2e
WORKDIR /run/tests
diff --git a/tests/docker-compose.yml b/tests/docker-compose.yml
index 7855176..cd0027c 100644
--- a/tests/docker-compose.yml
+++ b/tests/docker-compose.yml
@@ -43,8 +43,8 @@ services:
e2e-dev:
build:
- context: ..
- dockerfile: tests/Dockerfile.e2e
+ context: e2e
+ dockerfile: ../Dockerfile.e2e
depends_on:
atr-dev:
condition: service_healthy
@@ -69,8 +69,8 @@ services:
e2e:
build:
- context: ..
- dockerfile: tests/Dockerfile.e2e
+ context: e2e
+ dockerfile: ../Dockerfile.e2e
depends_on:
atr:
condition: service_healthy
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]