aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Christopher Baklid <[email protected]>2018-05-20 21:11:18 +0200
committerGravatar GitHub <[email protected]>2018-05-20 21:11:18 +0200
commit687fedfffa402e049c59668f2a6248ad2ba17910 (patch)
tree834e909781213650b40508398ed5a9bef10686c5 /Pipfile
parentremove set -e (diff)
Tests directory (#73)
moves all tests into a testing directory and splits the tests into separate files
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Pipfile b/Pipfile
index 8a4c11b8..ce4b1379 100644
--- a/Pipfile
+++ b/Pipfile
@@ -39,7 +39,7 @@ python_version = "3.6"
[scripts]
start = "gunicorn -w 12 -b 0.0.0.0:10012 -c gunicorn_config.py --log-level info -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker app:app"
lint = "python -m flake8"
-test = "py.test app_test.py --cov pysite --cov-report term-missing -v"
+test = "py.test tests --cov pysite --cov-report term-missing -v"
clean = "rm -rf __pycache__ htmlcov .coverage .pytest_cache"
build = "docker build -t pythondiscord/site:latest -f docker/Dockerfile ."
push = "docker push pythondiscord/site:latest"