If you're reading this, it means you saw something that is not right, you want to add a new feature or your manager asked you to contribute to this. In any case we are glad and it would be awesome if you can contribute.
We have a handful of unit tests and integration tests. In our Git workflow unit tests are run on every Push and Pull Request.
Feel free to submit issues we will take a look at them.
When you made some changes you are happy with please send a GitHub Pull Request to sda-orchestration to master
branch with a clear list of what you've done (read more about pull requests). When you create that Pull Request, we will forever be in your debt if you include unit tests. For extra bonus points you can always use add some more integration tests.
Please follow our Git branches model and coding conventions (both below), and make sure all of your commits are atomic (preferably one feature per commit) and it is recommended a Pull Request addresses one functionality or fixes one bug.
Always write a clear log message for your commits, and if there is an issue open, reference that issue. This guide might help: How to Write a Git Commit Message.
Once submitted, the Pull Request will go through a review process, meaning we will judge your code 😄.
We use dev
branch as the main development branch and master
as the releases branch.
All Pull Requests related to features should be done against dev
branch, releases Pull Requests should be done against master
branch.
Give your branch a short descriptive name (like the names between the <>
below) and prefix the name with something representative for that branch:
feature/<feature-name>
- used when an enhancement or new feature was implemented;docs/<what-the-docs>
- missing docs or keeping them up to date;bugfix/<caught-it>
- solved a bug;test/<thank-you>
- adding missing tests for a feature, we would prefer they would come with thefeature
but stillthank you
;refactor/<that-name-is-confusing>
- well we hope we don't mess anything and we don't get to use this;hotfix/<oh-no>
- for when things needed to be fixed yesterday.
We do optimize for readability, and it would be awesome if you go through the code and see what conventions we used so far:
- We follow pep8 and pep257 with some small exceptions;
- We like to keep things simple, so when possible avoid importing any big libraries.
Thanks, NeIC Developers