Run integration and E2E against deployable app images
Some checks failed
CICD / Build and Publish CICD Base Image (push) Failing after 12m44s
CICD / Build and Push CICD Image (push) Has been cancelled
CICD / Backend Tests (push) Has been cancelled
CICD / Pre-commit Checks (push) Has been cancelled
CICD / Frontend Tests (push) Has been cancelled
CICD / Backend Doctests (push) Has been cancelled
CICD / Build and Publish Runtime Images (push) Has been cancelled
CICD / Runtime Black-Box Integration Tests (push) Has been cancelled
CICD / End-to-End Tests (push) Has been cancelled

This commit is contained in:
copilotcoder
2026-07-06 23:12:38 -04:00
parent 738ab39736
commit 08d36e958b
5 changed files with 120 additions and 74 deletions

View File

@@ -26,20 +26,3 @@ services:
depends_on:
backend:
condition: service_started
e2e-tests:
image: ${CICD_IMAGE:-cicd:local}
depends_on:
frontend:
condition: service_started
environment:
CI: "true"
PLAYWRIGHT_BASE_URL: http://frontend:80
PLAYWRIGHT_OUTPUT_DIR: /tmp/playwright-artifacts
PLAYWRIGHT_JUNIT_OUTPUT_FILE: /tmp/playwright-artifacts/playwright-results.xml
volumes:
- ${E2E_ARTIFACT_DIR:-./frontend/.playwright-artifacts}:/tmp/playwright-artifacts
command:
- bash
- -lc
- cd /workspace/frontend && yarn test:e2e --reporter=list --timeout=90000