We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d69bdb commit d795da6Copy full SHA for d795da6
.github/workflows/test_docker.yml
@@ -36,6 +36,8 @@ jobs:
36
- name: Test
37
run: |
38
CONTAINER_ID="$(docker run --rm -v $(pwd):/root/playwright --name playwright-docker-test --workdir /root/playwright/ -d -t playwright-python:localbuild-focal /bin/bash)"
39
+ # Fix permissions for Git inside the container
40
+ docker exec "${CONTAINER_ID}" chown -R root:root /root/playwright
41
docker exec "${CONTAINER_ID}" pip install -r local-requirements.txt
42
docker exec "${CONTAINER_ID}" pip install -e .
43
docker exec "${CONTAINER_ID}" python setup.py bdist_wheel
0 commit comments