diff options
author | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 07:25:56 +0100 |
---|---|---|
committer | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 07:25:56 +0100 |
commit | 16dd224127bf0f01b053367ff1c0327a0bad7cdb (patch) | |
tree | 4f0652510d1980f56205e028492dc1090d9f00bc | |
parent | e1b0d43cd91d849f16fbcc0369bac4136aaf3049 (diff) | |
download | sqlparse-16dd224127bf0f01b053367ff1c0327a0bad7cdb.tar.gz |
Experiment with alternative Travis configuration.
-rw-r--r-- | .travis.yml | 34 |
1 files 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 |