tests/sitecustomize.py
author paugier <pierre.augier@univ-grenoble-alpes.fr>
Thu, 03 Oct 2024 14:45:01 +0200
changeset 51981 d07034819565
parent 48875 6000f5b25c9b
permissions -rw-r--r--
install: add long_description_content_type

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