34 lines
900 B
Markdown
34 lines
900 B
Markdown
# Contributing
|
|
|
|
To make contributions to this charm, you'll need a working [development setup](https://juju.is/docs/sdk/dev-setup).
|
|
|
|
You can use the environments created by `tox` for development:
|
|
|
|
```shell
|
|
tox --notest -e unit
|
|
source .tox/unit/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:
|
|
|
|
```shell
|
|
tox -e fmt # update your code according to linting rules
|
|
tox -e lint # code style
|
|
tox -e unit # unit tests
|
|
tox -e integration # integration tests
|
|
tox # runs 'lint' and 'unit' environments
|
|
```
|
|
|
|
## Build the charm
|
|
|
|
Build the charm in this git repository using:
|
|
|
|
```shell
|
|
charmcraft pack
|
|
```
|
|
|
|
<!-- You may want to include any contribution/style guidelines in this document>
|