mirror of
https://github.com/espressif/esptool.git
synced 2025-10-15 12:37:18 +08:00
10 lines
319 B
Python
10 lines
319 B
Python
try:
|
|
import coverage
|
|
|
|
coverage.process_startup()
|
|
except ModuleNotFoundError:
|
|
print("Coverage.py is not installed, skipping code coverage measurement")
|
|
|
|
# This file exists to perform arbitrary site-specific customizations.
|
|
# This script is executed before every Python process to start coverage measurement.
|