buildframework/helium/builder/python/lib/coverage.py
author y4jin
Tue, 23 Nov 2010 14:07:04 +0800
changeset 705 67449e76cb84
parent 587 85df38eb4012
permissions -rw-r--r--
Fix the illegal word scanned by sfchecksource tools

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