forked from RDFLib/rdflib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
38 lines (32 loc) · 831 Bytes
/
setup.cfg
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
[options.package_data]
rdflib = py.typed
[flake8]
ignore = W806
max-line-length = 88
exclude = host,extras,transform,rdfs,pyRdfa,sparql,results,pyMicrodata
[coverage:run]
branch = True
source = rdflib
[coverage:report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
if __name__==.__main__.:
[mypy]
python_version = 3.6
warn_unused_configs = True
ignore_missing_imports = True
disallow_subclassing_any = False
warn_unreachable = True
[tool:pytest]
addopts =
--doctest-modules
--ignore=test/translate_algebra
--ignore=admin
--ignore=rdflib/extras/external_graph_libs.py
--ignore-glob=docs/*.py
doctest_optionflags = ALLOW_UNICODE