buildframework/helium/external/python/bin/coverage.py
author Jon Chatten
Wed, 14 Apr 2010 14:26:41 +0100
changeset 433 5698eefedfc8
parent 1 be27ed110b50
permissions -rw-r--r--
Added tag stable for changeset 679d97112f98

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