Make TC fail when there is an error. This is hypothetical in this version but the next version of the TC is in testing.
#!/usr/bin/env python
"A script for invoking coverage from the command line."
import sys
del sys.path[0] # Otherwise "import coverage" finds this file!
import coverage
coverage.the_coverage.command_line(sys.argv[1:])