From 9b051e3124d3c15924c4066ffbb6b3369e59fd29 Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Sun, 15 Mar 2015 11:52:33 -0400 Subject: [PATCH] Remove 3.3, use pip for installs, use green here too. --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1b2cb28..21b6bc1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,10 @@ python: - "pypy3" - "2.6" - "2.7" - - "3.3" - "3.4" install: - - python setup.py -q install + - pip install --quiet . green script: - if [[ "$(python -c 'import sys; print(sys.version_info[:2])')" == "(2, 6)" ]]; then pip install unittest2; fi - - py.test --tb=native jsonschema + - green jsonschema - python -m doctest README.rst