tests/sitecustomize.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 29 Oct 2020 11:37:22 -0700
branchstable
changeset 45762 0599c83cdf5c
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
relnotes: copy "next" to "5.6" and clear "next" The same procedure as every year^Wcycle. Differential Revision: https://phab.mercurial-scm.org/D9263

from __future__ import absolute_import
import os

if os.environ.get('COVERAGE_PROCESS_START'):
    try:
        import coverage
        import uuid

        covpath = os.path.join(
            os.environ['COVERAGE_DIR'], 'cov.%s' % uuid.uuid1()
        )
        cov = coverage.coverage(data_file=covpath, auto_data=True)
        cov._warn_no_data = False
        cov._warn_unimported_source = False
        cov.start()
    except ImportError:
        pass