forked from chireiden/python-ass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
38 lines (35 loc) · 847 Bytes
/
Copy pathtox.ini
File metadata and controls
38 lines (35 loc) · 847 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
38
# We don't use tox anymore. This is just for configuring our dev tools.
[flake8]
exclude =
./.*,
__pycache__/,
htmlcov/,
venv/,
dist,
build,
max-line-length=100
ignore =
# D10{0..4} Missing docstring in public {module,class,method,function,package}
# D105: Missing docstring in magic method
# D107: Missing docstring in __init__
D100, D101, D102, D103, D104, D105, D107,
# The default ignore list:
# E121, E123, E126, E133, E226, E24, E704, W503, W504
# W503: line break occurred before a binary operator
W503,
# E241: multiple spaces after ':'
# E241,
[coverage:run]
# branch = True
source =
ass
tests
omit =
_rederer_test.py
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
@(abc\.)?abstractmethod
@pytest\.mark\.skip
if __name__ == ['"]__main__['"]: