buildframework/helium/external/python/bin/coverage.py
author jjkang
Wed, 30 Jun 2010 11:35:58 +0800
changeset 607 378360dbbdba
parent 1 be27ed110b50
permissions -rw-r--r--
Merge missed changeset 11 (raptor v2.14 and helium 10.0)

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