jenkins-bot has submitted this change and it was merged. Change subject: Use unittest 0.6.0 ......................................................................
Use unittest 0.6.0 Unittest 0.7+ is going to behave like unittest from Python 3.4, which is that expectedFailure's must fail, which is different from Python 2.7 and 3.3 unittest. https://code.google.com/p/unittest-ext/issues/detail?id=85 Bug: 72801 Change-Id: I7480b6021c76aa4383140e229b6c877a6833a7ef --- M .travis.yml 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: XZise: Looks good to me, approved jenkins-bot: Verified diff --git a/.travis.yml b/.travis.yml index fe58fc3..9525f49 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ - sudo apt-get install -y liblua5.1-dev install: - - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install ordereddict unittest2; fi + - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install ordereddict unittest2==0.6.0; fi - pip install six - mkdir ~/.pywikibot -- To view, visit https://gerrit.wikimedia.org/r/171243 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I7480b6021c76aa4383140e229b6c877a6833a7ef Gerrit-PatchSet: 1 Gerrit-Project: pywikibot/core Gerrit-Branch: master Gerrit-Owner: John Vandenberg <[email protected]> Gerrit-Reviewer: Ladsgroup <[email protected]> Gerrit-Reviewer: Merlijn van Deen <[email protected]> Gerrit-Reviewer: XZise <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ Pywikibot-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/pywikibot-commits
