forked from release-engineering/dockpulp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
32 lines (28 loc) · 661 Bytes
/
tox.ini
File metadata and controls
32 lines (28 loc) · 661 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
[tox]
envlist = py26,py27,flake8
[testenv]
deps =
flake8
pydocstyle==2.0.0
flake8-docstrings
-rtests/requirements.txt
commands =
py.test -s
[testenv:flake8]
basepython = python
commands =
flake8 {posargs}
[flake8]
# D100: Missing docstring in public module
# D101: Missing docstring in public class
# D102: Missing docstring in public method
# D103: Missing docstring in public function
# D104: Missing docstring in public package
# D401: First line should be in imperative mood; try rephrasing
ignore = D100, D101, D102, D103, D104, D401
max-line-length = 100
exclude =
.tox,
build,
docs/conf.py,
tests/__init__.py