forked from pinax/pinax-messages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
56 lines (49 loc) · 1.08 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
46
47
48
49
50
51
52
53
54
55
56
[flake8]
ignore = E265,E501
max-line-length = 100
max-complexity = 10
exclude = **/*/migrations/*
inline-quotes = double
[isort]
multi_line_output=3
known_django=django
known_third_party=appconf,pinax
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
skip_glob=**/*/migrations/*
[coverage:run]
source = pinax
omit = **/*/conf.py,**/*/tests/*,**/*/migrations/*
branch = true
data_file = .coverage
[coverage:report]
omit = **/*/conf.py,**/*/tests/*,**/*/migrations/*
exclude_lines =
coverage: omit
show_missing = True
[tox]
envlist =
checkqa,
py27-dj{111}
py34-dj{111,20}
py35-dj{111,20}
py36-dj{111,20}
[testenv]
passenv = CI CIRCLECI CIRCLE_*
deps =
coverage
codecov
dj111: Django>=1.11,<1.12
dj20: Django<2.1
master: https://github.com/django/django/tarball/master
usedevelop = True
commands =
coverage run setup.py test
coverage report -m --skip-covered
[testenv:checkqa]
commands =
flake8 pinax
isort --recursive --check-only --diff pinax -sp tox.ini
deps =
flake8 == 3.4.1
flake8-quotes == 0.11.0
isort == 4.2.15