Add djangocms_html_tags
to INSTALLED_APPS:
INSTALLED_APPS = [
...
"djangocms_html_tags",
...
]
Run migrations:
$ python manage.py migrate
Using Docker & Dosh scripts:
$ dosh runtests # to run the unit tests and see the coverage report.
$ dosh shell # to use Django shell or Python REPL in the development.
If you don't use Docker, you can try Virtualenv instead:
$ python -m pip install virtualenv
$ virtualenv venv
$ source venv/bin/activate # or run activate.ps1 if you use PowerShell.
$ (venv) python -m pip install -r demo/requirements.txt
$ (venv) python setup.py test