fargo/tox.ini

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.1 KiB
INI
Raw Normal View History

2016-03-22 16:03:41 +01:00
[tox]
2019-03-31 16:07:21 +02:00
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/fargo/{env:BRANCH_NAME:}
envlist =
py3-dj22-djfilter24-djtables211-black-coverage-pylint
py3-dj22-djfilter21-djtables1211
2016-03-22 16:03:41 +01:00
[testenv]
usedevelop = True
whitelist_externals =
/bin/mv
2016-03-22 16:03:41 +01:00
setenv =
DB_ENGINE=postgresql_psycopg2
2018-03-23 16:39:52 +01:00
DJANGO_SETTINGS_MODULE=fargo.settings
FARGO_SETTINGS_FILE=tests/settings.py
SETUPTOOLS_USE_DISTUTILS=stdlib
coverage: COVERAGE=--junitxml=junit-{envname}.xml --random --cov-report xml --cov-report html --cov=fargo/
2016-03-22 16:03:41 +01:00
deps =
2019-12-10 09:07:13 +01:00
pytest
psycopg2<2.9
pylint
pylint-django
dj22: django>=2.2,<2.3
djfilter21: django-filter>=2.1,<2.2
djfilter24: django-filter>=2.4,<2.5
djtables1211: django-tables2==1.21.1
djtables211: django-tables2==2.1.1
2018-03-23 16:39:52 +01:00
pytest-cov
pytest-random
pytest-mock
pytest-django
pytest-freezegun
django-webtest
2018-03-23 16:39:52 +01:00
WebTest
mock<4
pre-commit
2016-03-22 16:03:41 +01:00
commands =
2019-03-31 16:07:21 +02:00
py.test {env:COVERAGE:} {posargs:tests/}
pylint: ./pylint.sh fargo/
black: pre-commit run black --all-files --show-diff-on-failure