Menu | Link |
---|---|
Coverage Development | |
Coverage Stable | |
Issue tracker | https://github.com/unicef/unicef-security/issues |
pip install unicef-security
Add unicef_security
to INSTALLED_APPS
in settings
INSTALLED_APPS = [
'admin_extra_urls',
'unicef_security',
]
To configure the development environment
$ python manage.py upgrade --all
To run checks on the code to ensure code is in compliance
$ ruff check
$ ruff format
Testing is important and tests are located in tests/
directory and can be run with;
$ uv run pytest test
Coverage report is viewable in build/coverage
directory, and can be generated with;