It's pretty simple:
- Make some changes
- Check your code style with
make flake8
- Write some tests
- Run your tests with
make run
- Update the docs if neccesary
To run the test suite:
$ make test
Coverage will be reported to the console. You can also view an HTML formatted coverage report with:
$ make htmlcov
This project uses the flake8
tool to keep the source code in line with PEP8
reccomentations. Run the checker with:
$ make flake8
Build the Sphinx docs with:
$ make doc
Open the generated docs in your browser to check them:
$ make read
# opens docs/build/html/index.html