buildframework/helium/external/python/bin/coverage.py
author timothy.murphy@nokia.com
Wed, 09 Dec 2009 12:17:02 +0000
branchwip
changeset 89 315b0aa777bd
parent 1 be27ed110b50
permissions -rw-r--r--
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:])