From: Noah Morrison Date: Thu, 15 Jun 2017 02:38:12 +0000 (-0400) Subject: Use tox-travis X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=e7a58c188db12f58f7f0cda27b922229ffe9e769;p=chevron.git Use tox-travis --- diff --git a/.travis.yml b/.travis.yml index 10d028f..76276f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,18 @@ +sudo: false language: python + python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" + install: - - pip install flake8 - pip install coveralls -script: - - flake8 . - - ./test_spec.py - - coverage run --source=chevron ./test_spec.py + - pip install tox-travis + +script: tox + after_success: - coveralls diff --git a/tox.ini b/tox.ini index f634db7..4235ced 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, py33, py34, pypy, pypy3, flake8 +envlist = py26, py27, py33, py34, pypy, flake8 [testenv] commands = python {toxinidir}/test_spec.py