tests/sitecustomize.py
author Ian Moody <moz-ian@perix.co.uk>
Sun, 12 Jun 2022 16:04:57 +0100
branchstable
changeset 49371 270f8e89ff32
parent 48966 6000f5b25c9b
permissions -rw-r--r--
py3: stop using deprecated Element.getchildren() method in convert/darcs This has been deprecated since py3.2, and removed entirely in py3.9

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