Move testing ENV vars into pytest.ini

This commit is contained in:
Daniel Quinn 2017-06-19 10:57:30 +01:00
parent e8e38befb7
commit 2ac1b78a2c
3 changed files with 7 additions and 7 deletions

View File

@ -19,6 +19,7 @@ gunicorn==19.6.0
pytest pytest
pytest-django pytest-django
pytest-sugar pytest-sugar
pytest-env
pep8 pep8
flake8 flake8
tox tox

View File

@ -1,3 +1,7 @@
[pytest] [pytest]
DJANGO_SETTINGS_MODULE=paperless.settings DJANGO_SETTINGS_MODULE=paperless.settings
env =
PAPERLESS_CONSUME=/tmp
PAPERLESS_PASSPHRASE=THISISNOTASECRET
PAPERLESS_SECRET=paperless
PAPERLESS_EMAIL_SECRET=paperless

View File

@ -8,13 +8,8 @@ skipsdist = True
envlist = py34, py35, py36, pep8 envlist = py34, py35, py36, pep8
[testenv] [testenv]
commands = {envpython} manage.py test commands = pytest
deps = -r{toxinidir}/../requirements.txt deps = -r{toxinidir}/../requirements.txt
setenv =
PAPERLESS_CONSUME=/tmp
PAPERLESS_PASSPHRASE=THISISNOTASECRET
PAPERLESS_SECRET=paperless
PAPERLESS_EMAIL_SECRET=paperless
[testenv:pep8] [testenv:pep8]
commands=pep8 commands=pep8