forked from neogeny/TatSu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
60 lines (53 loc) · 860 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
[tox]
envlist = py310, py311
[testenv]
whitelist_externals =
echo
rm
commands =
flake8
pylint --ignore=bootstrap.py,model.py tatsu test examples
mypy --ignore-missing-imports --exclude "parsers|docs|tmp|build|dist" .
py.test
deps =
flake8
pylint
pytest
mypy
[testenv:py311]
commands =
flake8
mypy --ignore-missing-imports --exclude "parsers|docs|tmp|build|dist" .
py.test
deps =
flake8
pytest
mypy
[flake8]
ignore = E227, N802, W504, W605
max-line-length = 200
max-complexity = 16
exclude =
parsers,
docs,
build,
tmp,
.tox,
.ropeproject,
venv,
.eggs,
*.egg,
*.egg-info
[pytest]
addopts =
--disable-pytest-warnings
-W ignore
# addopts = --verbose
norecursedirs =
.ropeproject
.tox
.eggs
parsers
docs
build
tmp