view tests/sitecustomize.py @ 23308:dadcd40b62d8

silenttestrunner: add environment variable to make tests noisy again As I've been working on complicated extension code it's been handy to be able to get standard unittest verbose output so I can find crashers more efficiently.
author Augie Fackler <augie@google.com>
date Thu, 13 Nov 2014 15:47:15 -0500
parents 0b21ae0a2366
children 031947baf4d0
line wrap: on
line source

try:
    import coverage
    getattr(coverage, 'process_startup', lambda: None)()
except ImportError:
    pass