From c0582c2ef2caaaba3c5dc313482c2a2791d9d3f1 Mon Sep 17 00:00:00 2001 From: Hugo Date: Tue, 23 Sep 2014 10:59:03 +0300 Subject: [PATCH] Run slow PyPy* first, so other jobs aren't queued behind them. Run latest 3.x and 2.x next, to get quick compatibility results. --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c1e95f87f..eb0672334 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,15 +5,18 @@ notifications: env: MAX_CONCURRENCY=4 +# Run slow PyPy* first, so other jobs aren't queued behind them. +# Run latest 3.x and 2.x next, to get quick compatibility results. +# Then run the remainder. python: - "pypy" - "pypy3" - - 2.6 + - 3.4 - 2.7 + - 2.6 - "2.7_with_system_site_packages" # For PyQt4 - 3.2 - 3.3 - - 3.4 install: - "travis_retry sudo apt-get -qq install libfreetype6-dev liblcms2-dev python-qt4 ghostscript libffi-dev libjpeg-turbo-progs cmake imagemagick"