summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 3be5d08e60e01593cad215c6679b34e85613a264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[nosetests]
verbosity=0
detailed-errors=1
with-doctest=0

# The default regex which discovers test modules catches networkx.testing
# and declares it as a test module, even though it is not a test module
# This causes a very small discrepancy between the coverage report as
# generated by nosetests, and the coverage report as generated by coverage.
# If we want them to agree, then we need to make sure that networkx.testing
# is not captured by the default match regex.
#
# Default is: (?:^|[\b_\./-])[Tt]est
#
match=(?:^|[\b_\./-])[Tt]est(?!ing)


[wheel]
universal = 1