From c9619ae61af12818e7bfb8d7f30f98593b44de67 Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 13 Oct 2014 10:52:44 +0300 Subject: [PATCH 1/2] Allow latest PyPy 2.4.0 to fail and temporarily add previous passing 2.3.1 for the time-being (#952) --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6f14035e8..6272b2678 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ env: MAX_CONCURRENCY=4 # Then run the remainder. python: - "pypy" + - "pypy-2.3.1" - "pypy3" - 3.4 - 2.7 @@ -69,5 +70,8 @@ after_success: # (Installation is very slow on Py3, so just do it for Py2.) - if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then Scripts/diffcover-install.sh; fi - if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then Scripts/diffcover-run.sh; fi + matrix: - fast_finish: true + - fast_finish: true + - allow_failures: + - python: pypy From 1693e4bf6d8bfc942058898cf3de2faf50b1b0a0 Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 13 Oct 2014 10:58:57 +0300 Subject: [PATCH 2/2] Fix allow_failures --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6272b2678..084057702 100644 --- a/.travis.yml +++ b/.travis.yml @@ -72,6 +72,6 @@ after_success: - if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then Scripts/diffcover-run.sh; fi matrix: - - fast_finish: true - - allow_failures: - - python: pypy + fast_finish: true + allow_failures: + - python: pypy