Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 495 Bytes

development.md

File metadata and controls

47 lines (33 loc) · 495 Bytes

Development

Build driver:

pip install -e .
python ./build_driver.py

Run tests:

pytest

Run tests with coverage:

pytest --cov=playwright --cov-report html
open htmlcov/index.html

Deploy:

python ./build_package.py
... check
python ./upload_package.py

Checking for typing errors

mypy playwright

Format the code

black .

Installing the Git hooks (auto format etc. on commit)

pre-commit install