To make changes to this project, first clone this repository:
git clone https://github.com/wagtail/wagtail-newsletter.git
cd wagtail-newsletter
With your preferred virtualenv activated, install testing dependencies:
python -m pip install --upgrade 'pip>=21.3'
python -m pip install -e '.[testing,ci,mailchimp,mrml]' -U
python -m pip install flit
flit install
Note that this project uses pre-commit. It is included in the project testing requirements. To set up locally:
# go to the project directory
$ cd wagtail-newsletter
# initialize pre-commit
$ pre-commit install
# Optional, run all checks once for this, then the checks will run only on the changed files
$ git ls-files --others --cached --exclude-standard | xargs pre-commit run --files
Now you can run tests as shown below:
tox
or, you can run them for a specific environment tox -e python3.12-django5.1-wagtail6.3
or specific test tox -e python3.12-django5.1-wagtail6.3-sqlite -- wagtail-newsletter.tests.test_file.TestClass.test_method
To run the test app interactively, use tox -e interactive
, visit http://127.0.0.1:8020/admin/
and log in with admin
/changeme
.
The documentation source lives under docs/
. It's built with Sphinx. You can start a development server that will auto-build and refresh the page in the browser:
pip install sphinx-autobuild
sphinx-autobuild docs docs/_build/html