mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
11 lines
211 B
Python
11 lines
211 B
Python
"""
|
|
Python will always try to import sitecustomize.
|
|
We use that fact to try and support code coverage for sub-processes
|
|
"""
|
|
|
|
try:
|
|
import coverage
|
|
|
|
coverage.process_startup()
|
|
except ImportError:
|
|
pass
|