buildframework/helium/external/python/bin/coverage.py
author wbernard
Fri, 13 Aug 2010 14:59:05 +0300
changeset 628 7c4a911dc066
parent 1 be27ed110b50
permissions -rw-r--r--
helium_11.0.0-e00f171ca185

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