1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# Contributing
To create a development environment and install the development dependencies, run :
```bash
python3 -m venv venv
. venv/bin/activate
pip install --upgrade pip setuptools
pip install '.[dev]'
pre-commit install --install-hooks
```
Then you can make your changes, and commit them with
```
git commit # Pre-commit hooks should be run, checking your code
```
Every commit is checked with pre-commit hooks for :
- style consistency with [flake8](https://flake8.pycqa.org/en/latest/manpage.html)
- type safety with [mypy](http://mypy-lang.org/)
- test conformance by running [tests](./tests) with [pytest](https://docs.pytest.org/en/latest/)
- You can run `pytest` from the command line.
|