blob: 35ab87a56bf42edb948641bb97b43939ca86e69a (
plain)
| 1
2
3
4
5
6
7
8
 | # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
"""Coverage.py's main entry point."""
import sys
from coverage.cmdline import main
sys.exit(main())
 |