welco/tox.ini

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

34 lines
829 B
INI
Raw Normal View History

2018-07-14 10:36:23 +02:00
[tox]
2021-07-03 14:48:09 +02:00
envlist = py3-django22-black-coverage-pylint
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/welco/{env:BRANCH_NAME:}
2018-07-14 10:36:23 +02:00
[testenv]
usedevelop =
coverage: True
setenv =
DJANGO_SETTINGS_MODULE=welco.settings
2019-05-20 14:07:12 +02:00
WELCO_SETTINGS_FILE=tests/settings.py
SETUPTOOLS_USE_DISTUTILS=stdlib
2018-07-14 10:36:23 +02:00
fast: FAST=--nomigrations
coverage: COVERAGE=--junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=welco/
2018-07-14 10:36:23 +02:00
deps =
django22: django>=2.2,<2.3
2018-07-14 10:36:23 +02:00
pytest-cov
pytest-django
2020-03-17 19:21:10 +01:00
pytest!=5.3.3
2018-07-14 10:36:23 +02:00
WebTest
mock<4
2018-07-14 10:36:23 +02:00
httmock
python-dateutil
2020-07-28 13:18:49 +02:00
pylint
pylint-django
django-webtest
2018-07-14 10:36:23 +02:00
pyquery
lxml
git+https://git.entrouvert.org/debian/django-ckeditor.git
black: pre-commit
2018-07-14 10:36:23 +02:00
commands =
pylint: ./pylint.sh welco/
py.test {env:COVERAGE:} {posargs:tests/}
black: pre-commit run black --all-files --show-diff-on-failure