jenkins-bot has submitted this change and it was merged.
Change subject: Fix output of setup.py nosetests ......................................................................
Fix output of setup.py nosetests
-v doesnt emit messages for each test executed. Use --verbosity=2 instead.
Change-Id: Ib863e8f98d090591d9bbbd7823c32c1c45c1f4e9 --- M .travis.yml 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: XZise: Looks good to me, approved jenkins-bot: Verified
diff --git a/.travis.yml b/.travis.yml index f7d58c0..02c2616 100644 --- a/.travis.yml +++ b/.travis.yml @@ -59,9 +59,9 @@ - if [[ "$USE_NOSE" == "1" ]]; then if [[ "$SITE_ONLY" == "1" ]]; then echo "Running site tests only code ${LANGUAGE} on family ${FAMILY}" ; - python setup.py nosetests --tests tests -v -a "family=$FAMILY,code=$LANGUAGE" ; + python setup.py nosetests --tests tests --verbosity=2 -a "family=$FAMILY,code=$LANGUAGE" ; else - python setup.py nosetests --tests tests -v ; + python setup.py nosetests --tests tests --verbosity=2 ; fi ; else python setup.py test ;
pywikibot-commits@lists.wikimedia.org