Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 585 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (23 loc) · 585 Bytes

Environment setup

Install the necessary dependecies in a seperate virtual environment

# Create a virtual environment during development to avoid dependency issues
pip install -r requirements.txt

# Before submitting a PR, run the unittests locally
pytest -v

Contributing

  1. Fork it

  2. Create your feature branch

git checkout -b feature/new_feature
  1. Commit your changes
git commit -m 'add new feature'
  1. Push to the branch
git push origin feature/new_feature
  1. Create a new pull request (PR)