瀏覽代碼

fixed search for non-existent coverage file. also updated the demo

bmallred 11 年之前
父節點
當前提交
f870411427
共有 3 個文件被更改,包括 42 次插入1 次删除
  1. 1 0
      examples/python/umbrella
  2. 40 0
      examples/python/umbrella.py
  3. 1 1
      plugin/umbrella.vim

+ 1 - 0
examples/python/umbrella

@ -0,0 +1 @@
1
python umbrella.py &> /dev/null

+ 40 - 0
examples/python/umbrella.py

@ -0,0 +1,40 @@
1
#!/usr/bin/python
2
import coverage
3
import os
4
import unittest
5
6
# Store our output to the file
7
output = ""
8
9
# Start the coverage
10
cov = coverage.coverage()
11
cov.start()
12
13
# Dynamically get all the test cases we can find.
14
suite = unittest.TestSuite()
15
suite.addTests(unittest.TestLoader().discover(os.getcwd(), pattern="*.py"))
16
17
# Run the tests
18
unittest.TextTestRunner().run(suite)
19
20
# Stop coverage and save the stats
21
cov.stop()
22
cov.save()
23
24
# Iterate through the tested files
25
for source in cov.data.measured_files():
26
    for a in [cov.analysis2(source)]:
27
        output += "{0};{1};{2};{3};\n".format(
28
                a[0], 
29
                ",".join(str(x) for x in a[1]), 
30
                ",".join(str(x) for x in a[2]), 
31
                ",".join(str(x) for x in a[3]))
32
33
# Write the coverage report for umbrella
34
fileName = ".umbrella-coverage"
35
if os.path.isfile(fileName):
36
    os.remove(fileName)
37
38
f = open(fileName, "w")
39
f.write(output)
40
f.close()

+ 1 - 1
plugin/umbrella.vim

@ -78,7 +78,7 @@ function! s:ShowCoverage()
78 78
        return
79 79
    endif
80 80
81
    if exists('g:umbrella_root') && exists('g:umbrella_coverage')
81
    if exists('g:umbrella_root') && exists('g:umbrella_coverage') && filereadable(g:umbrella_coverage)
82 82
        exec "cd! " . g:umbrella_root
83 83
        for line in readfile(g:umbrella_coverage)
84 84
            let parts = split(l:line, ";")