jenkins-bot has submitted this change and it was merged.
Change subject: Allow travis failures on python 2.6 ......................................................................
Allow travis failures on python 2.6
Python 2.6 setup is registering a fail on travis builds due to SkipTest occurring in setUpClass. The same SkipTest is registered as a skipped test on python 2.7 and doesnt cause the build to be considered a failure.
https://travis-ci.org/wikimedia/pywikibot-core/builds/31882466
travis allows builds to fail without the changeset being considered a failure. The builds allowed to fail are displayed as red, with the log to allow issues to be investigated and fixed without putting a halt on merging of changesets.
Change-Id: I0db9294154f06d650928b144390b383144d87d91 --- M .travis.yml 1 file changed, 4 insertions(+), 0 deletions(-)
Approvals: John Vandenberg: Looks good to me, approved jenkins-bot: Verified
diff --git a/.travis.yml b/.travis.yml index db01511..b1e1007 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,6 +42,10 @@ - LANGUAGE=ar FAMILY=wikipedia PYSETUP_TEST_EXTRAS=1 - LANGUAGE=test FAMILY=wikidata
+matrix: + allow_failures: + - python: "2.6" + notifications: irc: channels:
pywikibot-commits@lists.wikimedia.org