buildframework/helium/builder/python/lib/coverage.py
author jascui
Tue, 16 Nov 2010 15:56:27 +0800
changeset 683 8e0eb519ef53
parent 587 85df38eb4012
permissions -rw-r--r--
Solve incorrect handling of ExportName=SymbolName@Ordinal syntax

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