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: -- To view, visit https://gerrit.wikimedia.org/r/152272 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I0db9294154f06d650928b144390b383144d87d91 Gerrit-PatchSet: 1 Gerrit-Project: pywikibot/core Gerrit-Branch: master Gerrit-Owner: John Vandenberg <[email protected]> Gerrit-Reviewer: John Vandenberg <[email protected]> Gerrit-Reviewer: Ladsgroup <[email protected]> Gerrit-Reviewer: Merlijn van Deen <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ Pywikibot-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/pywikibot-commits
