瀏覽代碼

added example files

bmallred 11 年之前
父節點
當前提交
43716f7398
共有 2 個文件被更改,包括 20 次插入0 次删除
  1. 2 0
      example-umbrella
  2. 18 0
      example-umbrella.py

+ 2 - 0
example-umbrella

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

+ 18 - 0
example-umbrella.py

@ -0,0 +1,18 @@
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()