Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 530 Bytes

CONTRIBUTING.md

File metadata and controls

20 lines (15 loc) · 530 Bytes

Contributing

Create an environment for development with tox:

tox devenv -e lint
source venv/bin/activate

Testing

This project uses tox for managing test environments. There are some pre-configured environments that can be used for linting and formatting code when you're preparing contributions to the charm:

tox -e static        # Static analysis
tox -e lint          # code style
tox -e unit          # unit tests
tox                      # runs 'format', 'lint', and 'unit' environments