1
#!/usr/bin/env python
2
"A script for invoking coverage from the command line."
3
4
import sys
5
del sys.path[0] # Otherwise "import coverage" finds this file!
6
import coverage
7
8
coverage.the_coverage.command_line(sys.argv[1:])