From e7a58c188db12f58f7f0cda27b922229ffe9e769 Mon Sep 17 00:00:00 2001 From: Noah Morrison Date: Wed, 14 Jun 2017 22:38:12 -0400 Subject: [PATCH] Use tox-travis --- .travis.yml | 12 +++++++----- tox.ini | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) 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 -- 2.47.3