Thank you for considering to help Wagtail Bynder.
We welcome all support, whether on bug reports, code, reviews, tests, documentation, translations or just feature requests.
👉 If an issue isn’t being worked on by anyone, go for it! No need to ask "please assign me this issue". Add a comment to claim the issue once you’re ready to start.
Always start work on issues or features by creating a new git branch from the most up-to-date main
branch.
When ready, open a pull request with as detailed a description as possible, including a reference to the GitHub issue
number that the PR addresses or relates to. Use Fixes #123
, Closes #123
or Addresses #123
when fixing an issue.
Use Relates to #123
or Part of #123
if addressing a small part of a multi-item issue.
To report bugs, use our issue tracker.
Use our issue tracker for feature requests
We welcome code reviews from everyone. You can see a list of pull requests
We welcome help with triaging issues and pull requests. You can help by:
- Adding more details or your own perspective to bug reports or feature requests.
- Reviewing or otherwise offering your feedback on pull requests.
To make changes to this project, first clone this repository:
git clone [email protected]:torchbox/wagtail-bynder.git
cd wagtail-bynder
With your preferred virtualenv activated, install testing dependencies:
pip install -e '.[testing]' -U
Note that this project uses pre-commit. To set up locally:
# if you don't have it yet, globally
$ pip install pre-commit
# go to the project directory
$ cd wagtail-bynder
# initialize pre-commit
$ pre-commit install
# Optional, run all checks once for this, then the checks will run only on the changed files
$ pre-commit run --all-files
Now you can run tests as shown below:
tox
or, you can run them for a specific environment tox -e py3.11-django4.2-wagtail5.2
or specific test
tox -e py3.11-django4.2-wagtail5.2 -- tests.test_wagtail_overrides.TestPatchWagtailURLsMiddleware.test_same_view_names_are_used_by_middleware
To run the test app interactively, use tox -e interactive
, visit http://127.0.0.1:8020/admin/
and log in with admin
/changeme
.