mirror of
https://github.com/azaion/loader.git
synced 2026-04-26 19:46:32 +00:00
Update .gitignore, remove obsolete Woodpecker build file, and add e2e-runner service to docker-compose
- Added 'e2e/results/' to .gitignore to exclude end-to-end test results. - Deleted the outdated Woodpecker build-arm.yml file as it is no longer needed. - Introduced a new e2e-runner service in docker-compose.test.yml to facilitate end-to-end testing with dependencies on other services.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
FROM docker:24
|
||||
|
||||
RUN apk add --no-cache python3 py3-pip bash
|
||||
|
||||
WORKDIR /e2e
|
||||
|
||||
COPY requirements.txt ./
|
||||
RUN python3 -m venv /opt/venv \
|
||||
&& /opt/venv/bin/pip install --no-cache-dir --upgrade pip \
|
||||
&& /opt/venv/bin/pip install --no-cache-dir -r requirements.txt pytest-csv
|
||||
|
||||
ENV PATH=/opt/venv/bin:$PATH
|
||||
|
||||
COPY . /e2e
|
||||
|
||||
CMD ["pytest", "--csv=/results/report.csv", "-v"]
|
||||
@@ -54,6 +54,27 @@ services:
|
||||
networks:
|
||||
- e2e-net
|
||||
|
||||
e2e-runner:
|
||||
build: .
|
||||
depends_on:
|
||||
swtpm:
|
||||
condition: service_started
|
||||
mock-api:
|
||||
condition: service_started
|
||||
mock-cdn:
|
||||
condition: service_started
|
||||
system-under-test:
|
||||
condition: service_started
|
||||
environment:
|
||||
LOADER_URL: http://system-under-test:8080
|
||||
MINIO_URL: http://mock-cdn:9000
|
||||
COMPOSE_PROJECT_NAME: ${COMPOSE_PROJECT_NAME:-loader-e2e}
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- ./results:/results
|
||||
networks:
|
||||
- e2e-net
|
||||
|
||||
networks:
|
||||
e2e-net:
|
||||
driver: bridge
|
||||
|
||||
Reference in New Issue
Block a user