Created
November 26, 2013 17:43
-
-
Save edwindotcom/7662682 to your computer and use it in GitHub Desktop.
generate code cover bash script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
import os | |
files = os.listdir("test/run") | |
for file in files: | |
print "istanbul cover test/run/%s" % file | |
print "mv coverage coverage_%s" % file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment