buildframework/helium/external/python/bin/coverage.py
changeset 1 be27ed110b50
equal deleted inserted replaced
0:044383f39525 1:be27ed110b50
       
     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:])