Skip to content
This repository has been archived by the owner on Mar 28, 2020. It is now read-only.

Latest commit

 

History

History
23 lines (16 loc) · 808 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (16 loc) · 808 Bytes

Contributing guidelines

Want to contribute to this project? Awesome news! Here are some guidelines to get you started.

Note: before writing any code, be sure to open an issue if the change you're proposing is not trivial.

  1. Fork this repo and clone it to your machine.
  2. Create a virtual environment and install development dependencies:
python -m venv venv
. venv/bin/activate
pip install -r requirements.txt
  1. Work on a separate branch, e.g. fix/some-bug.
  2. Make sure tests pass before pushing your code. To run the test suite, use:
pytest
  1. Once the feature or bug fix is ready enough to be reviewed, open a pull request!