splitting out coverage config for jenkins, as per @sdiehl comments on PR

This commit is contained in:
fawce
2012-03-15 19:21:03 -04:00
parent 62d0422eb4
commit c42ffb5e1a
3 changed files with 13 additions and 10 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ pip freeze
paver apidocs html
#run all the tests in test. see setup.cfg for flags.
nosetests
nosetests --config=jenkins_setup.cfg
#run pylint checks
cp ./pylint.rcfile /mnt/jenkins/.pylintrc #default location for config file...
+12
View File
@@ -0,0 +1,12 @@
[nosetests]
verbosity=2
detailed-errors=1
with-xcoverage=1
cover-package=zipline
cover-erase=1
cover-html=1
cover-html-dir=docs/_build/html/cover
with-xunit=1
-9
View File
@@ -2,15 +2,6 @@
verbosity=2
detailed-errors=1
#with-xcoverage=1
#cover-package=zipline
#cover-erase=1
#cover-html=1
#cover-html-dir=docs/_build/html/cover
#with-xunit=1
# Drop into debugger on failure
#pdb=0
#pdb-failures=0