https://github.com/ks6088ts-labs/workshop-playwright-python
https://github.com/ks6088ts-labs/workshop-playwright-python
playwright playwright-python
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ks6088ts-labs/workshop-playwright-python
- Owner: ks6088ts-labs
- License: mit
- Created: 2025-05-01T00:38:24.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-08-22T08:18:20.000Z (7 months ago)
- Last Synced: 2025-08-22T10:26:40.528Z (7 months ago)
- Topics: playwright, playwright-python
- Language: Python
- Homepage: https://ks6088ts-labs.github.io/workshop-playwright-python/
- Size: 1.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/ks6088ts-labs/workshop-playwright-python/actions/workflows/test.yaml?query=branch%3Amain)
[](https://github.com/ks6088ts-labs/workshop-playwright-python/actions/workflows/docker.yaml?query=branch%3Amain)
[](https://github.com/ks6088ts-labs/workshop-playwright-python/actions/workflows/docker-release.yaml)
[](https://github.com/ks6088ts-labs/workshop-playwright-python/actions/workflows/ghcr-release.yaml)
[](https://github.com/ks6088ts-labs/workshop-playwright-python/actions/workflows/github-pages.yaml)
# workshop-playwright-python
This is a template repository for Python
## Prerequisites
- [Python 3.10+](https://www.python.org/downloads/)
- [uv](https://docs.astral.sh/uv/getting-started/installation/)
- [GNU Make](https://www.gnu.org/software/make/)
## Development instructions
### Local development
Use Makefile to run the project locally.
```shell
# help
make
# install dependencies for development
make install-deps-dev
# run tests
make test
# run CI tests
make ci-test
```
### Docker development
```shell
# build docker image
make docker-build
# run docker container
make docker-run
# run CI tests in docker container
make ci-test-docker
```
## Deployment instructions
### Docker Hub
To publish the docker image to Docker Hub, you need to [create access token](https://app.docker.com/settings/personal-access-tokens/create) and set the following secrets in the repository settings.
```shell
gh secret set DOCKERHUB_USERNAME --body $DOCKERHUB_USERNAME
gh secret set DOCKERHUB_TOKEN --body $DOCKERHUB_TOKEN
```