new test framework #1

Merged
dan merged 47 commits from wip-new-framework into dev 2023-11-22 21:40:14 +01:00
Showing only changes of commit 8a252df91f - Show all commits

View file

@ -2,9 +2,11 @@ FROM python:3.12-slim
WORKDIR /code WORKDIR /code
COPY ./requirements.txt ./ RUN pip install --no-cache-dir pytest-playwright
RUN pip install --no-cache-dir -r requirements.txt
RUN playwright install RUN playwright install
RUN playwright install-deps RUN playwright install-deps
COPY ./requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt