-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathtox.ini
More file actions
37 lines (33 loc) · 721 Bytes
/
tox.ini
File metadata and controls
37 lines (33 loc) · 721 Bytes
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
[tox]
envlist = py35,py36,py37,py38,lint
[testenv]
deps =
pytest
pytest-cov
commands =
pytest -v {posargs:--cov semshi/ --cov-report term-missing:skip-covered --ignore test/test_fuzz.py test/}
[testenv:lint]
deps=
flake8
pylint
commands =
flake8 semshi/
pylint --rcfile tox.ini semshi/
[pylint]
disable =
missing-docstring,
invalid-name,
too-few-public-methods,
too-many-public-methods,
fixme,
redefined-builtin,
redefined-outer-name,
too-many-return-statements,
import-error,
too-many-branches,
too-many-arguments,
too-many-instance-attributes,
no-member,
[flake8]
ignore = E731,F402,E261,E306,E302,E305,W504
exclude = __init__.py,lib/