Update of /cvsroot/sqlobject/SQLObject/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv1387/tests
Modified Files:
.cvsignore test.py
Log Message:
Ignore coverage data file. But also delete coverage data file after
generating reports
Index: .cvsignore
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/tests/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** .cvsignore 7 Sep 2003 19:12:43 -0000 1.2
--- .cvsignore 7 Sep 2003 19:14:07 -0000 1.3
***************
*** 1,2 ****
--- 1,3 ----
*.pyc
*,cover
+ .coverage
Index: test.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/tests/test.py,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** test.py 7 Sep 2003 18:07:11 -0000 1.25
--- test.py 7 Sep 2003 19:14:07 -0000 1.26
***************
*** 644,647 ****
--- 644,648 ----
if modFile.startswith(here) or modFile.startswith(there):
writeCoverage(mod, there, os.path.join(here, 'SQLObject'))
+ coverage.erase()
sys.stdout.write('done.\n')
|