Thanks for helping to makeing this project better!
We welcome all kinds of contributions:
- Bug fixes
- Documentation improvements
- New features
- Refactoring & tidying
If you have a specific contribution in mind, be sure to check the issues and pull requests in progress - someone could already be working on something similar and you can help out.
After cloning this repo, create a virtualenv:
python -m venv .venv
Activate the virtualenv and install dependencies by running:
python -m pip install -r requirements.txt
- Make a fork of the master branch on github
- Clone your forked repo on your computer
- Create a feature branch
git checkout -b feature_my_awesome_feature
- Modify the code
- Verify that the Coding guidelines are respected
- Verify that the automated tests are passing
- Make a commit and push it to your fork
- From github, create the pull request. Automated tests from GitHub actions and codecov will then automatically run the tests and check the code coverage
- If other modifications are needed, you are free to create more commits and push them on your branch. They'll get added to the PR automatically.
Once the Pull Request is accepted and merged, you can safely delete the branch (and the forked repo if no more development is needed).