buildframework/helium/external/python/bin/coverage.py
author yiluzhu
Tue, 27 Apr 2010 16:30:46 +0100
branchfix
changeset 492 9f47b050a32f
parent 1 be27ed110b50
permissions -rw-r--r--
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:])