buildframework/helium/builder/python/lib/coverage.py
changeset 587 85df38eb4012
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/buildframework/helium/builder/python/lib/coverage.py	Tue Apr 27 08:33:08 2010 +0300
@@ -0,0 +1,8 @@
+#!/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:])