From 3c2c0b3a9d0524dd3243523c7d70da131677f64c Mon Sep 17 00:00:00 2001 From: medmunds Date: Sun, 16 Apr 2017 15:24:18 -0700 Subject: [PATCH] Travis: move live tests from pypy to py3 Fix incorrect change from Django 1.11 release. Intent is to run live tests on newest released Django under Python 3, and on oldest supported Django under Python 2.7. (Though they should -- and do -- pass under pypy. Just trying to conserve ESP testing credits.) --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 870ebd3..1f447fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,8 +29,8 @@ matrix: - { env: DJANGO=django==1.11, python: 2.7 } - { env: DJANGO=django==1.11, python: 3.4 } - { env: DJANGO=django==1.11, python: 3.5 } - - { env: DJANGO=django==1.11, python: 3.6 } - - { env: DJANGO=django==1.11 RUN_LIVE_TESTS=true, python: pypy } + - { env: DJANGO=django==1.11 RUN_LIVE_TESTS=true, python: 3.6 } + - { env: DJANGO=django==1.11, python: pypy } # Django 2.0 (prerelease): Python 3.5+ # - { env: DJANGO="--pre django", python: 3.5 } # - { env: DJANGO="--pre django", python: 3.6 }