1try:
2    import coverage
3
4    coverage.process_startup()
5except ModuleNotFoundError:
6    print("Coverage.py is not installed, skipping code coverage measurement")
7
8# This file exists to perform arbitrary site-specific customizations.
9# This script is executed before every Python process to start coverage measurement.
10