Browse Source

removed old files

bmallred 11 years ago
parent
commit
ebaf961263
2 changed files with 0 additions and 20 deletions
  1. 0 2
      example-umbrella
  2. 0 18
      example-umbrella.py

+ 0 - 2
example-umbrella

@ -1,2 +0,0 @@
1
coverage run python_test.py &> /dev/null
2
python umbrella.py &> /dev/null

+ 0 - 18
example-umbrella.py

@ -1,18 +0,0 @@
1
#!/usr/bin/python
2
3
import coverage
4
5
output = ""
6
cov = coverage.coverage()
7
cov.load()
8
9
for a in [cov.analysis2("*")]:
10
    output += "{0};{1};{2};{3}\n".format(
11
            a[0], 
12
            ",".join(str(x) for x in a[1]), 
13
            "", 
14
            ",".join(str(x) for x in a[3]))
15
16
f = open(".umbrella-coverage", "w")
17
f.write(output)
18
f.close()