eliminated mv command, using flag to nosetests

This commit is contained in:
fawce
2012-02-08 17:19:54 -05:00
parent c90864222a
commit 672d83dc66
2 changed files with 5 additions and 8 deletions
+4 -7
View File
@@ -24,8 +24,11 @@ workon qsim
# Show what we have installed
pip freeze
#documentation output
paver apidocs html
#run all the tests in test
nosetests --with-xunit --cover-erase --cover-package=qsim
nosetests --with-xunit --cover-erase --cover-package=qsim --cover-html-dir=./docs/_build/html/cover
#run pylint checks
pylint -f parseable . | tee pylint.out
@@ -33,10 +36,4 @@ pylint -f parseable . | tee pylint.out
#run sloccount analysis
sloccount --wide --details ./ > sloccount.sc
#documentation output
paver apidocs html
#move coverage into apidocs
mv ./cover ./docs/_build/html
deactivate
+1 -1
View File
@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><testsuite name="nosetests" tests="1" errors="0" failures="0" skip="0"><testcase classname="qsim.test.test_messaging.MessagingTestCase" name="test_client" time="0.262" /></testsuite>
<?xml version="1.0" encoding="UTF-8"?><testsuite name="nosetests" tests="1" errors="0" failures="0" skip="0"><testcase classname="qsim.test.test_messaging.MessagingTestCase" name="test_client" time="0.251" /></testsuite>