summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: b6cf95e783357b20ba24683fb4613c92536a73a5 (plain)
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
[nosetests]

attr=!known_issue,!non_core,!performancetest
verbosity=1
with-doctest=1
with-doctest-ignore-unicode=1
doctest-options=+IGNORE_UNICODE
exclude=rdflib.plugins.sparql.paths|rdflib.extras.external_graph_libs

[flake8]
ignore = W806
max-line-length = 88
exclude = host,extras,transform,rdfs,pyRdfa,sparql,results,pyMicrodata

[coverage:run]
branch = True
#source = rdflib,build/src/rdflib # specified in .travis.yml for different envs
omit = */site-packages/*

[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__.: