buildframework/helium/builder/python/lib/coverage.py
changeset 587 85df38eb4012
equal deleted inserted replaced
217:0f5e3a7fb6af 587:85df38eb4012
       
     1 #!/usr/bin/env python
       
     2 "A script for invoking coverage from the command line."
       
     3 
       
     4 import sys
       
     5 del sys.path[0] # Otherwise "import coverage" finds this file!
       
     6 import coverage
       
     7 
       
     8 coverage.the_coverage.command_line(sys.argv[1:])