django-allauth-ens/tox.ini
Aurélien Delobelle fe21f9c6af Eww, hard to sum up…
- Update django-allauth-cas to the last version.
- Add docs (README, example/README).
- Add tests for Clipper provider.
- Add tests to check templates do not contain syntax error.
- Add the last missing templates to override all allauth's displayable
  templates.
- Improve stylesheets.
2018-01-16 16:57:18 +01:00

40 lines
833 B
INI

[tox]
envlist =
django{18,19,110}-py{27,34,35},
django111-py{27,34,35,36},
django20-py{34,35,36},
cov_combine,
flake8,
isort
[testenv]
deps =
django18: django>=1.8,<1.9
django19: django>=1.9,<1.10
django110: django>=1.10,<1.11
django111: django>=1.11,<2.0
django20: django>=2.0,<2.1
coverage
mock ; python_version < "3.0"
usedevelop= True
commands =
python -V
coverage run \
--branch \
--source=allauth_ens --omit=*migrations* \
--parallel-mode \
runtests.py {posargs}
[testenv:cov_combine]
deps = coverage
commands =
coverage combine
coverage report --show-missing
[testenv:flake8]
deps = flake8
commands = flake8 allauth_ens tests
[testenv:isort]
deps = isort
commands = isort --recursive --check-only --diff allauth_ens tests