forked from neogeny/TatSu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
77 lines (65 loc) · 945 Bytes
/
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
[tox]
envlist = py27, py35, py36, py37, pypy, pypy3, cython
[testenv]
whitelist_externals =
echo
rm
commands =
flake8
py.test
deps =
flake8
pytest
[testenv:py35]
commands =
flake8
mypy . --ignore-missing-imports
mypy . --py2 --ignore-missing-imports
py.test
deps =
flake8
mypy
pytest
[testenv:py36]
commands =
flake8
mypy . --ignore-missing-imports
mypy . --py2 --ignore-missing-imports
py.test
deps =
flake8
mypy
pytest
[testenv:cython]
commands =
flake8
py.test
deps =
cython
pytest
flake8
[flake8]
ignore = N802, W504, W605
max-line-length = 200
exclude =
parsers,
docs,
build,
tmp,
.tox,
.ropeproject,
venv,
*.egg,
*.egg-info,
[pytest]
addopts =
--disable-pytest-warnings
-W ignore
# addopts = --verbose
norecursedirs =
.ropeproject
.tox
parsers
docs
build
tmp