view tests/sitecustomize.py @ 18680:15711d9d8b2c

tests: quickly check if the glob line already matches the output This happens when a path with "/" as only glob char is matched on a non windows platform. (Currently one third of all glob matches.) The slowdown on windows and the speedup on other os are neglectable.
author Simon Heimberg <simohe@besonet.ch>
date Wed, 13 Feb 2013 21:58:52 +0100
parents 0b21ae0a2366
children 031947baf4d0
line wrap: on
line source

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