combo/tox.ini

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

43 lines
1.0 KiB
INI
Raw Permalink Normal View History

[tox]
2018-06-01 10:16:24 +02:00
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/combo/{env:BRANCH_NAME:}
2021-07-02 14:33:42 +02:00
envlist = coverage-py3-django22-codestyle-pylint
[testenv]
usedevelop = True
setenv =
DJANGO_SETTINGS_MODULE=combo.settings
COMBO_SETTINGS_FILE=tests/settings.py
TOX_WORK_DIR={toxworkdir}
SETUPTOOLS_USE_DISTUTILS=stdlib
coverage: COVERAGE=--cov-report xml --cov-report html --cov=combo/
2021-04-09 20:18:50 +02:00
DB_ENGINE=django.db.backends.postgresql_psycopg2
passenv =
BRANCH_NAME
deps =
2020-04-01 18:50:53 +02:00
django22: django>=2.2,<2.3
pywebpush
pytest-cov
pytest-django
2018-03-24 02:09:52 +01:00
pytest-freezegun
pytest!=5.3.3
WebTest
mock<4
httmock
2021-01-08 10:49:41 +01:00
pylint
pylint-django
2018-05-04 15:43:18 +02:00
django-webtest<1.9.3
pyquery
2021-06-17 08:50:02 +02:00
psycopg2-binary<2.9
django-mellon>=1.13
vobject
django-ratelimit<3
git+https://git.entrouvert.org/debian/django-ckeditor.git
2021-04-06 21:28:51 +02:00
pre-commit
uwsgidecorators
commands =
./getlasso3.sh
python manage.py compilemessages
py.test {env:COVERAGE:} {posargs: --junitxml=junit-{envname}.xml tests/}
pylint: ./pylint.sh combo/ tests/
2021-04-06 21:28:51 +02:00
codestyle: pre-commit run --all-files --show-diff-on-failure