aboutsummaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2023-12-29 08:50:13 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2023-12-29 08:50:13 +0100
commit4f6dc93c00ab0841586c6751e5e8e0cedad9e41c (patch)
treef674459842c6c481d3e2c3c74522958dd29e7427 /check
parente9c843a4eb817daf249167b79ba3c60237bb93e9 (diff)
Improve running tests
Diffstat (limited to 'check')
-rwxr-xr-xcheck4
1 files changed, 2 insertions, 2 deletions
diff --git a/check b/check
index 4821df4..1983f5d 100755
--- a/check
+++ b/check
@@ -24,12 +24,12 @@ shift 1
case $SUBCMD in
"tests")
cd "$root"
- ./manage.py test $@
+ KERBANA_CONFIG=kerbana_tests.yaml ./manage.py test $@
cd -
;;
"coverage")
cd "$root"
- python3-coverage run ./manage.py test $@
+ KERBANA_CONFIG=kerbana_tests.yaml python3-coverage run ./manage.py test $@
python3-coverage report
cd -
;;