瀏覽代碼

removed old files

bmallred 11 年之前
父節點
當前提交
ebaf961263
共有 2 個文件被更改,包括 0 次插入20 次删除
  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()