Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 486 Bytes

development.md

File metadata and controls

46 lines (32 loc) · 486 Bytes

Development

Build driver:

pip install -e .
python setup.py bdist_wheel

Run tests:

pytest

Run tests with coverage:

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

Deploy:

python setup.py bdist_wheel
python setup.py upload

Checking for typing errors

mypy playwright

Format the code

black .

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

pre-commit install