Cardea
Ready to contribute with your own code? Great!
Before diving deeper into the contributing guidelines, please make sure to having read the Basic Concepts section and to have gone through the development guide.
Afterwards, please make sure to read the following contributing guidelines carefully, and later on head to the step-by-step guides for each possible type of contribution.
Once you have set up your development environment, you are ready to start working on your python code.
When doing so, make sure to follow these guidelines:
If it does not exist yet, create a new GitHub issue. Indicate in the issue description or in a comment that you are available to apply the changes yourself.
Wait for the feedback from the maintainers, who will approve the issue and assign it to you, before proceeding to implement any changes. Be open to discuss with them about the need of adding these changes.
Once the issue has been approved and assigned to you, implement the necessary changes in your own fork of the project. Please implement them in a branch named after the issue number and title, as this makes keeping track of the history of the project easier in the long run.
You can create such a branch with the following command:
$ git checkout -b name-of-your-bugfix-or-feature
While hacking your changes, make sure to cover all your developments with the required unit tests, and that none of the old tests fail as a consequence of your changes. For this, make sure to run the tests suite and check the code coverage:
$ make test # Run the tests $ make coverage # Get the coverage report
When you’re done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox:
$ make lint # Check code styling $ make test-all # Execute tests on all python versions
Make also sure to include the necessary documentation in the code as docstrings following the google docstring style. If you want to view how your documentation will look like when it is published, you can generate and view the docs with this command:
$ make viewdocs
Commit your changes and push your branch to GitHub:
$ git add . $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature
Submit a pull request through the GitHub website and wait for feedback from the maintainers.
If you are going to contribute Python code, we will ask you to write unit tests that cover your development, following these requirements:
Unit Tests should be based only in unittest and pytest modules.
The tests that cover a module called cardea/path/to/a_module.py should be implemented in a separated module called tests/cardea/path/to/test_a_module.py. Note that the module name has the test_ prefix and is located in a path similar to the one of the tested module, just inside the tests folder.
cardea/path/to/a_module.py
tests/cardea/path/to/test_a_module.py
test_
tests
Each method of the tested module should have at least one associated test method, and each test method should cover only one use case or scenario.
Test case methods should start with the test_ prefix and have descriptive names that indicate which scenario they cover. Names such as test_some_method_input_none, test_some_method_value_error or test_some_method_timeout are right, but names like test_some_method_1, some_method or test_error are not.
test_some_method_input_none
test_some_method_value_error
test_some_method_timeout
test_some_method_1
some_method
test_error
Each test should validate only what the code of the method being tested does, and not cover the behavior of any third party package or tool being used, which is assumed to work properly as far as it is being passed the right values.
Any third party tool that may have any kind of random behavior, such as some Machine Learning models, databases or Web APIs, will be mocked using the mock library, and the only thing that will be tested is that our code passes the right values to them.
mock
Unit tests should not use anything from outside the test and the code being tested. This includes not reading or writing to any file system or database, which will be properly mocked.