forked from dj-stripe/dj-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
91 lines (81 loc) · 1.61 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[tox]
envlist =
py34-django20
py35-django{20,21,master}
py36-django{20,21,master}
py36-django20-checkmigrations
flake8
[testenv]
passenv = DJSTRIPE_*
setenv =
PYTHONWARNINGS = all
commands = python runtests.py {posargs}
deps =
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
djangomaster: https://github.com/django/django/archive/master.tar.gz
djangorestframework
psycopg2
coverage
nose
django-nose
termcolor
[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:makemessages]
basepython = python3.6
whitelist_externals = mkdir
changedir = {toxinidir}/djstripe
commands =
- mkdir -p {toxinidir}/djstripe/locale
- django-admin.py makemessages {posargs}
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 = 88
balanced_wrapping = True