buildframework/helium/external/python/bin/coverage.py
author andy simpson <andrews@symbian.org>
Fri, 30 Jul 2010 15:23:44 +0100
changeset 623 997c1de7c6ee
parent 1 be27ed110b50
permissions -rw-r--r--
DEADHEAD Branch no longer active as changes incorporated in revision c26070468a42

#!/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:])