diff options
author | 2018-05-20 21:11:18 +0200 | |
---|---|---|
committer | 2018-05-20 21:11:18 +0200 | |
commit | 687fedfffa402e049c59668f2a6248ad2ba17910 (patch) | |
tree | 834e909781213650b40508398ed5a9bef10686c5 /Pipfile | |
parent | remove 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-- | Pipfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |