sapling/tests/sitecustomize.py
Dirkjan Ochtman 0fd3b50af0 tests: use external coverage, mandate newer version
This removes the option for including the stdlib in coverage reports.
2010-03-11 15:32:24 +01:00

7 lines
134 B
Python

try:
import coverage
if hasattr(coverage, 'process_startup'):
coverage.process_startup()
except ImportError:
pass