- Test coverage must not decrease, and all tests must pass.
- The changelog must be updated.
- No breaking changes should be introduced (unless discussed otherwise). Use feature flags if needed.
- End-to-end tests must be added if a new feature is introduced.
We keep our issues on GitHub fresh and clean. We put feature requests, bugs, and other tasks there. If you want to help develop our project, feel free to contribute!
There are plenty of issues reported on GitHub. Find one that suits you and make your change! Just remember that...
Choose an issue you want to work on and assign yourself to it. This helps other contributors know that someone is already working on it. Only assign yourself if you have time to resolve the issue. If we don't see any PRs from you for an extended period, you may be unassigned. You can reassign yourself when you have more time.
Our backlog is diverse, with both cosmetic and functional changes. We try to prioritize them. Issues without a set priority may take longer to address.
To ensure your code is included in the next release, check if the issue has a milestone set and if it is the closest one.
We write unit tests for our code, so ensure your code is tested.
If your PR does not pass our tests, it will not be merged. No one will review it until all tests pass.
If your PR contains only tests that make our code more bug-resistant, you can treat it as if it has the highest priority.
- Use
poetryto manage Python dependencies. - Run linters (
make lint) before submitting a PR. - Follow the repository's coding standards (e.g., line length of 100).
- Check the GitHub Issues page to find tasks to work on.
- Use feature flags for introducing new functionality without breaking existing features.
- Ensure your PR adheres to the repository's style and testing guidelines.