-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
31 lines (28 loc) · 746 Bytes
/
setup.cfg
File metadata and controls
31 lines (28 loc) · 746 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
[pytest]
testpaths =
file_metadata
tests
timeout = 50
addopts =
--color=yes
--doctest-glob=*.rst
--doctest-modules
--doctest-ignore-import-error
-r s
--ignore=file_metadata/wikibot
env =
PYTHONHASHSEED=0
# PYTHONHASHSEED=0 is required to use same hashes in pytests-xdist's workers
[coverage:run]
branch = True
cover_pylib = False
source = file_metadata
[coverage:report]
show_missing = True
[flake8]
# D = Documentation issues
# FI50, FI51, FI53, FI54 = __future__'s division, absolute_import,
# print_function, unicode_literals is present.
# FI12, FI15 = __future__'s with_statement, generator_stop is not present.
ignore = D, FI50, FI51, FI53, FI54, FI12, FI15
min-version = 2.6