forked from CitrineInformatics/citrine-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
21 lines (17 loc) · 613 Bytes
/
tox.ini
File metadata and controls
21 lines (17 loc) · 613 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[flake8]
doctests = True
max-line-length = 99
max-doc-length = 119
# D100: Docstring at top of module is often redundant
# D104: Docstring in package is often redundant
# D105: Magic methods (e.g. __str__) are self explanatory
# D107: __init__ is self explanatory
# D301: backslash is used in making docstrings for sphinx to parse
# D401: Imperative mood requirement basically gets in the way
ignore = D100,D104,D105,D107,D301,D401
# D101, D102 would result in redundant documentation for subclasses.
per-file-ignores =
src/citrine/_serialization/*:D101,D102
exclude = tests/*
[pytest]
testpaths = tests