passerelle-minint/tox.ini

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

25 lines
594 B
INI
Raw Normal View History

2020-05-01 02:27:54 +02:00
[tox]
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/passerelle-minint/{env:BRANCH_NAME:}
envlist = py3-django32-tests
2020-05-01 02:27:54 +02:00
[testenv]
usedevelop = True
setenv =
DJANGO_SETTINGS_MODULE=passerelle.settings
PASSERELLE_SETTINGS_FILE=tests/settings.py
SETUPTOOLS_USE_DISTUTILS=stdlib
2020-05-01 02:27:54 +02:00
deps =
django32: django>=3.2,<3.3
git+https://git.entrouvert.org/passerelle.git
2020-05-01 02:27:54 +02:00
django-webtest
psycopg2-binary
2020-05-01 02:27:54 +02:00
pytest
pytest-django
mock<4
2020-05-03 02:25:04 +02:00
httmock
2020-05-01 02:27:54 +02:00
xmlschema<1.1
2023-03-01 15:09:59 +01:00
pre-commit
2020-05-01 02:27:54 +02:00
commands =
2021-08-16 08:07:35 +02:00
py.test {posargs: --junitxml=junit-{envname}.xml tests/}
2023-03-01 15:09:59 +01:00
pre-commit run --all-files --show-diff-on-failure