Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 463 Bytes

CONTRIBUTING.md

File metadata and controls

18 lines (11 loc) · 463 Bytes

To start developing, first create a virtual environment. Inside the virtual environment, install all development dependencies:

pip install -U -r requirements-dev.txt

Alternatively, install tox first. Then, let tox create the virtual environment for you:

pip install -U --user tox
tox -e dev
. .tox/dev/bin/activate  # activate the virtual environment

To run lint:

tox -e lint

To run runtime tests:

tox --skip-missing-interpreters