buildframework/helium/builder/python/lib/coverage.py
author jjkang
Wed, 30 Jun 2010 16:14:56 +0800
changeset 608 690cd13b97a9
parent 587 85df38eb4012
permissions -rw-r--r--
Minor change: remove old release-notes.txt from raptor

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