django-modeltranslation/tox.ini

29 lines
540 B
INI
Raw Normal View History

2014-10-25 14:45:57 +00:00
[flake8]
max-line-length = 100
2019-02-12 21:29:01 +00:00
ignore = E722, E241, W504
2014-10-25 14:45:57 +00:00
exclude = .tox,docs/modeltranslation/conf.py
2012-11-10 18:32:02 +00:00
[tox]
distribute = False
envlist =
2019-02-13 15:13:30 +00:00
py{27,34,35,36}-1.11,
py{34,35,36}-2.0,
py{35,36,37}-2.1,
2012-11-10 18:32:02 +00:00
[testenv]
downloadcache = {toxworkdir}/_download/
commands =
2013-04-07 10:57:34 +00:00
django-admin.py --version
2019-02-16 13:11:47 +00:00
{envpython} runtests.py {posargs}
basepython =
py27: python2.7
py34: python3.4
py35: python3.5
py36: python3.6
py37: python3.7
deps =
2019-02-13 15:13:30 +00:00
1.11: Django==1.11.*
2.0: Django==2.0.*
2.1: Django==2.1.*
2015-04-12 22:04:41 +00:00
Pillow