Skip to content

Commit

Permalink
Pin pytest-playwright and playwright version
Browse files Browse the repository at this point in the history
This should prevent `Looks like Playwright was just updated to XXXXX`
error messages
  • Loading branch information
aequitas authored and mxsasha committed Feb 7, 2025
1 parent e247d83 commit 583c017
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/test-runner.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG PYTHON_VERSION=3.9
FROM mcr.microsoft.com/playwright/python:v1.49.0-noble
ARG PYTHON_VERSION

RUN python3 -m pip install pytest pytest-playwright
RUN python3 -m pip install pytest pytest-playwright==0.6.2 playwright==1.49.0

RUN install -m 0755 -d /etc/apt/keyrings
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
Expand All @@ -26,4 +26,4 @@ COPY integration_tests/ /source/integration_tests/
WORKDIR /source

ENTRYPOINT [ "python3", "-m", "pytest", "--verbose"]
CMD [ "integration_tests/live/" ]
CMD [ "integration_tests/live/" ]

0 comments on commit 583c017

Please sign in to comment.