mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
9 lines
211 B
Python
9 lines
211 B
Python
"""Setup coverage tracking for subprocesses.
|
|
|
|
Any ImportError is silently ignored.
|
|
Requires COVERAGE_PROCESS_START in the environments, which gets set in
|
|
tox.ini.
|
|
"""
|
|
import coverage
|
|
|
|
coverage.process_startup()
|