aboutsummaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
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 -
;;