From 20e8e723f0feeb760de3f4abb3d60e7376a4e328 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sun, 3 Nov 2013 18:28:17 +0100 Subject: [PATCH] Only build in-place --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e2829e50..f22c0ba5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,9 +28,7 @@ install: - sudo pip-$PYVER install cython - sudo pip-$PYVER install flake8 - sudo pip-$PYVER install six - - $PYTHON setup.py build - $PYTHON setup.py build_ext --inplace - - sudo $PYTHON setup.py install script: # Check if setup.py's match bento.info - $PYTHON check_bento_build.py @@ -41,6 +39,7 @@ script: # Run all tests - nosetests-$PYVER --exe -v --with-doctest skimage # Run all doc examples + - export PYTHONPATH=$(pwd):$PYTHONPATH - for f in doc/examples/*.py; do $PYTHON "$f"; if [ $? -ne 0 ]; then exit 1; fi done - for f in doc/examples/applications/*.py; do $PYTHON "$f"; if [ $? -ne 0 ]; then exit 1; fi done # Run pep8 and flake tests