aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2019-09-21 15:34:00 +1000
committerGravatar GitHub <[email protected]>2019-09-21 15:34:00 +1000
commit8de91c4fff4a0e84bea9b6543a78231cd5afe85f (patch)
treec3a80f71c6ebac2f153cce4853b6c56c3e113a86 /Pipfile
parentRevert uwsgi back to pip install. (#254) (diff)
parentChange CI DB setup to use docker. (diff)
CI Job Merge (#255)
CI Job Merge Co-authored-by: null <[email protected]>
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Pipfile b/Pipfile
index 897d1b08..6da62a2b 100644
--- a/Pipfile
+++ b/Pipfile
@@ -40,6 +40,7 @@ python_version = "3.7"
[scripts]
makemigrations = "python manage.py makemigrations"
django_shell = "python manage.py shell"
-test = "python manage.py test"
-lint = "flake8 pydis_site"
+test = "coverage run manage.py test"
+report = "coverage report -m"
+lint = "flake8"
precommit = "pre-commit install"