From 16dd224127bf0f01b053367ff1c0327a0bad7cdb Mon Sep 17 00:00:00 2001 From: Andi Albrecht Date: Mon, 26 Oct 2015 07:25:56 +0100 Subject: Experiment with alternative Travis configuration. --- .travis.yml | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index c71f1fd..56b1dd8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,19 +1,21 @@ language: python -python: 2.7 -env: - - TOX_ENV=py27 - - TOX_env=py32 - - TOX_ENV=py33 - - TOX_ENV=py34 - - TOX_ENV=pypy + +python: + - "3.5" + - "3.4" + - "3.3" + - "3.2" + - "2.7" + - "pypy" + - "pypy3" + - "nightly" + matrix: - include: - - python: 3.5 - env: - - TOX_ENV=py35 -before_install: - - sudo apt-get install pypy pypy3 + allow_failures: + - python: "nightly" + install: - - pip install tox -script: - - tox -e $TOX_ENV + - pip install pytest + - pip install -e . + +script: py.test -- cgit v1.2.1