From dea1b170a8f2dcb506a5dd0bdf5f75ea68ca2954 Mon Sep 17 00:00:00 2001 From: Ed Morley Date: Tue, 30 May 2017 23:10:07 +0100 Subject: [PATCH] Allow Travis run to fail on Python 3 I'll file a separate issue for adding Python 3 support. --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index 0f3cb65..36223b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,3 +14,9 @@ script: # TODO: Replace with an actual test suite: # https://github.com/kennethreitz/bob-builder/issues/31 - bob --help +matrix: + allow_failures: + - python: "3.4" + - python: "3.5" + - python: "3.6" + fast_finish: true