moved all nosetest flags into setup.cfg, added back xml reporting for coverage

This commit is contained in:
fawce
2012-02-08 23:06:11 -05:00
parent 811fa52ec9
commit 6ccd112dd3
2 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -27,8 +27,8 @@ pip freeze
#documentation output
paver apidocs html
#run all the tests in test
nosetests --with-xunit --cover-erase --cover-package=qsim --cover-html-dir=./docs/_build/html/cover
#run all the tests in test. see setup.cfg for flags.
nosetests
#run pylint checks
pylint -f parseable qsim | tee pylint.out
+4 -2
View File
@@ -2,11 +2,13 @@
verbosity=2
detailed-errors=1
with-coverage=1
with-xcoverage=1
cover-package=qsim
#cover-erase=1
cover-erase=1
cover-html=1
cover-html-dir=docs/_build/html/cover
with-xunit=1
# Drop into debugger on failure
#pdb=0