blob: 4781529f83345afbd5089411dc83b55f3781b410 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[nosetests]
verbosity=0
detailed-errors=1
with-doctest=1
# 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)
|