From be872f4833e3e1a64f459f9505fd0d79e7b39420 Mon Sep 17 00:00:00 2001 From: Omer Katz Date: Sun, 14 Sep 2014 10:59:59 +0300 Subject: [PATCH] Improved the build matrix. --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d2a7ab3..8322557 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,9 +4,11 @@ python: - 2.7 - 3.2 - 3.3 + - 3.4 - pypy + - pypy3 install: - - pip install -r requirements/development.txt -r requirements/production.txt + - travis_retry pip install -r requirements/development.txt -r requirements/production.txt - python setup.py install script: - coverage run setup.py test @@ -15,3 +17,5 @@ after_success: - coveralls notifications: email: aaron.iles+travis-ci@gmail.com +matrix: + fast_finish: true