Development Guide¶
Anitya Messaging Schema welcomes contributions! Our issue tracker is located on GitHub.
Contribution Guidelines¶
When you make a pull request, someone from the fedora-infra organization will review your code. Please make sure you follow the guidelines below:
Python Support¶
Anitya Messaging Schema supports Python 3.8 or greater so please ensure the code you submit works with these versions. The test suite will run against all supported Python versions to make this easier.
Code Style¶
We follow the PEP8 style guide for Python. The test suite includes a test that enforces the required style, so all you need to do is run the tests to ensure your code follows the style. If the unit test passes, you are good to go!
To automatically format the code run the following in project root. The .tox folder
will be created when tox will be run.
.tox/format/bin/black .
Unit Tests¶
The test suites can be run using tox by simply running
tox from the repository root. These tests include unit tests, a linter to ensure
Python code style is correct, checks for possible security issues, and checks the
documentation for Sphinx warnings or errors.
All tests must pass. All new code should have 100% test coverage. Any bugfix should be accompanied by one or more unit tests to demonstrate the fix. If you are unsure how to write unit tests for your code, we will be happy to help you during the code review process.
CI (Continuous Integration)¶
Anitya Messaging Schema has a CI set up to run on each PR. As a CI of choice Anitya Messaging Schema is using Fedora zuul and the configuration could be found in .zuul.yaml in Anitya Messaging Schema root directory.
The CI runs unit tests for all supported python versions, code style test, coverage test, flake8 test (linter), documentation test build and bandit (to check for any security issue).
The successful run of CI is a requirement for merge of the PR.
Documentation¶
Anitya Messaging Schema uses sphinx to create its documentation. New packages, modules, classes, methods, functions, and attributes all should be documented using “Google style” docstrings. For historical reasons you may encounter plain reStructuredText-style docstrings. Please consider converting them and opening a pull request!
Release notes¶
To add entries to the release notes, create a file in the news directory
with the source.type name format, where type is one of:
feature: for new featuresbug: for bug fixesapi: for API changesdev: for development-related changesauthor: for contributor namesother: for other changes
And where the source part of the filename is:
42when the change is described in issue42PR42when the change has been implemented in pull request42, and there is no associated issueusernamefor contributors (authorextention). It should be the username part of their commit’s email address.
For example:
If this PR is solving bug 714
the file inside news should be called 714.bug
and the content of the file would be matching the issue title.
The text inside the file will be used as entry text.
A preview of the release notes can be generated with towncrier --draft.
Release Guide¶
To do the release you need following python packages installed:
poetry
towncrier
If you are a maintainer and wish to make a release of Anitya Messaging Schema, follow these steps:
Change the version using
poetry version <version>. This is used to also set the version in the documentation.Add any missing news fragments to the
newsfolder.Get authors of commits by
python get-authors.py.
Note
This script must be executed in news folder, because it
creates files in current working directory.
Generate the changelog by running
towncrier.
Note
If you added any news fragment in the previous step, you might see towncrier
complaining about removing them, because they are not committed in git.
Just ignore this and remove all of them manually; release notes will be generated
anyway.
Remove every remaining news fragment from
newsfolder.Commit your changes with message Anitya schema <version>.
Tag a release with
git tag -s <version>with description anitya-schema <version>.Don’t forget to
git push --tags.Sometimes you need to also do
git push.Build the Python packages with
poetry build.Upload the packages with
poetry publish.Create new release on GitHub releases.