combo-plugin-nanterre/tox.ini

32 lines
989 B
INI

[tox]
envlist = py3-black-pytest-coverage
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/combo-plugin-nanterre/{env:BRANCH_NAME:}
[testenv]
usedevelop =
coverage: True
nocoverage: False
setenv =
DJANGO_SETTINGS_MODULE=combo.settings
COMBO_SETTINGS_FILE=tests/settings.py
DB_ENGINE=django.db.backends.postgresql_psycopg2
SETUPTOOLS_USE_DISTUTILS=stdlib
coverage: COVERAGE=--cov-report xml --cov-report html --cov=combo_plugin_nanterre/
pytest: PYTEST=--junitxml=junit-{envname}.xml
deps =
pytest
pytest-cov
pytest-django
WebTest
django-webtest
psycopg2-binary
django-ratelimit<3
django>=3.2,<3.3
git+https://git.entrouvert.org/entrouvert/debian-django-ckeditor.git
git+https://git.entrouvert.org/entrouvert/publik-django-templatetags.git
git+https://git.entrouvert.org/entrouvert/combo.git
black: pre-commit
commands =
pytest: py.test {posargs: {env:PYTEST:} {env:COVERAGE:} tests/}
black: pre-commit run black --all-files --show-diff-on-failure