forked from pinax/django-user-accounts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
30 lines (28 loc) · 600 Bytes
/
Copy pathtox.ini
File metadata and controls
30 lines (28 loc) · 600 Bytes
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
[flake8]
ignore = E265,E501
max-line-length = 100
max-complexity = 10
exclude = account/migrations/*,docs/*
[tox]
envlist =
py27-{1.8,1.9,master},
py32-{1.8},
py33-{1.8},
py34-{1.8,1.9,master},
py35-{1.8,1.9,master}
[testenv]
deps =
py{27,33,34,35}: coverage==4.0.2
py32: coverage==3.7.1
flake8==2.5.0
1.8: Django>=1.8,<1.9
1.9: Django>=1.9,<1.10
master: https://github.com/django/django/tarball/master
usedevelop = True
setenv =
LANG=en_US.UTF-8
LANGUAGE=en_US:en
LC_ALL=en_US.UTF-8
commands =
flake8 account
coverage run setup.py test