aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar S. Co1 <[email protected]>2019-09-24 13:54:40 -0400
committerGravatar S. Co1 <[email protected]>2019-09-24 13:54:40 -0400
commit20b19de0d22e33476ac082ea048476f9f8c1a5ed (patch)
treef1541776183c3d3850693ad20d81fb530bed3a1d /Pipfile
parentApply suggestions from code review (diff)
parentSwap out old discord shield for new one. (diff)
Merge branch 'master' into update-linting
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Pipfile b/Pipfile
index 2346ae99..af5165df 100644
--- a/Pipfile
+++ b/Pipfile
@@ -17,7 +17,8 @@ django-crispy-bulma = ">=0.1.2,<2.0"
whitenoise = "==4.1.2"
requests = "~=2.21"
pygments = "~=2.3.1"
-wiki = {git = "https://github.com/python-discord/django-wiki.git"}
+#wiki = {git = "https://github.com/python-discord/django-wiki.git"}
+wiki = {path = "./docker/app/wheels/wiki-0.5.dev20190420204942-py3-none-any.whl"}
pyyaml = "*"
[dev-packages]
@@ -42,6 +43,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"