forked from pinax/django-mailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
45 lines (42 loc) · 1.03 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tox]
# Remember to add to .travis.yml if this is added to.
envlist =
py27-django{14,15,16,17,18,19,110,111}-test,
py33-django{15,16,17,18}-test,
py34-django{15,16,17,18,19,110,111}-test,
py35-django{18,19,110,111}-test,
{py27,py33,py34,py35}-flake,
checkmanifest,
[flake8]
max-line-length=100
max-complexity=10
exclude=mailer/south_migrations,mailer/migrations,build
[testenv]
basepython =
py27: python2.7
py33: python3.3
py34: python3.4
py35: python3.5
commands =
test: coverage run ./runtests.py
flake: flake8 --statistics --benchmark mailer
deps =
lockfile==0.10.2
coverage
mock==1.0.1
django14: Django==1.4.22
django15: Django==1.5.12
django16: Django==1.6.11
django17: Django==1.7.11
django18: Django==1.8.17
django19: Django==1.9.12
django110: Django==1.10.5
django111: Django==1.11.4
flake: flake8==3.2.1
py27-flake: Django<2.0
[testenv:checkmanifest]
basepython = python2.7
deps =
check-manifest
Django<2.0
commands = check-manifest