forked from dj-stripe/dj-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
75 lines (66 loc) · 1.33 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tox]
envlist =
py34-django20
py35-django{20,master}
py36-django{20,master}
py36-django20-checkmigrations
flake8
[testenv]
passenv = DJSTRIPE_*
setenv =
PYTHONWARNINGS = all
commands = python runtests.py {posargs}
deps =
-r{toxinidir}/tests/requirements.txt
django20: Django>=2.0,<2.1
djangomaster: https://github.com/django/django/archive/master.tar.gz
[testenv:flake8]
skip_install = True
deps =
flake8
isort
commands =
flake8 {toxinidir} {posargs}
isort {toxinidir} -c
[testenv:checkmigrations]
basepython = python3.6
commands = python makemigrations.py --check
deps =
Django>=2.0,<2.1
[testenv:makemigrations]
basepython = python3.6
commands = python makemigrations.py
deps =
Django>=2.0,<2.1
[testenv:docs]
basepython = python3.6
changedir = docs
whitelist_externals = make
commands = make html
deps =
sphinx
sphinx_rtd_theme
sphinx-autobuild
sphinxcontrib-django
[coverage:run]
branch = True
source = djstripe
omit =
djstripe/migrations/*
djstripe/management/*
djstripe/admin.py
djstripe/checks.py
[coverage:html]
directory = cover
[flake8]
max-complexity = 10
max-line-length = 119
exclude = djstripe/migrations/, .tox/, build/lib/
[isort]
default_section = THIRDPARTY
lines_after_imports = 2
known_first_party = djstripe
multi_line_output = 5
skip = djstripe/migrations/, .tox/
line_length = 119
balanced_wrapping = True