tests/sitecustomize.py
author Bryan O'Sullivan <bryano@fb.com>
Fri, 14 Sep 2012 12:05:12 -0700
changeset 17556 39c6e349dfff
parent 14971 0b21ae0a2366
child 24505 031947baf4d0
permissions -rw-r--r--
wireproto: don't audit local paths during stream_out Auditing at this stage is both pointless (paths are already trusted by the local repo) and expensive. Skipping the audits improves stream_out performance by about 15%.

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