summaryrefslogtreecommitdiff
path: root/coverage/__main__.py
blob: 79aa4e2b35d798e911fd677c78bb59b0ed556cf5 (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://github.com/nedbat/coveragepy/blob/master/NOTICE.txt

"""Coverage.py's main entry point."""

import sys
from coverage.cmdline import main
sys.exit(main())