(summary) add unit and API tests for summary service

Summary service currently has no tests. Add unit and API tests to
summary service.
This commit is contained in:
leo
2026-03-06 22:24:20 +01:00
parent cb4502354e
commit c08411d133
14 changed files with 484 additions and 7 deletions
+2 -1
View File
@@ -1,8 +1,9 @@
#!/usr/bin/env bash
# NB: this file is used locally only. In CI, it is overwritten by pytest install
source "$(dirname "${BASH_SOURCE[0]}")/_config.sh"
_dc_run \
-e DJANGO_CONFIGURATION=Test \
app-dev \
pytest "$@"
pytest "$@"
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
source "$(dirname "${BASH_SOURCE[0]}")/_config.sh"
_dc_run \
app-summary-dev \
python -m pytest "$@"