buildframework/helium/external/python/bin/coverage.py
author yiluzhu
Fri, 30 Apr 2010 16:11:48 +0100
branchfix
changeset 495 274251b07d69
parent 1 be27ed110b50
permissions -rw-r--r--
Release note: SF Bug 2420 - [Raptor] Output from recipes is mis-recognised as "what" output

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