From 3d1cf9fd685ad476e631d2bca76024bc9447be5d Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Mon, 24 Feb 2014 08:10:45 -0800 Subject: .travis.yml: Run py.test, install pies2overrides for py2 --- .travis.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 1e66aee..1c61464 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,16 @@ language: python python: + - "pypy" - "2.6" - "2.7" - "3.2" - "3.3" -script: python setup.py test \ No newline at end of file +install: + - if [[ $TRAVIS_PYTHON_VERSION == '2.6' || + $TRAVIS_PYTHON_VERSION == '2.7' || + $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then + pip install ./pies2overrides; + fi +script: + - pip install pytest + - py.test -- cgit v1.2.1