Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
wkentaro committed Aug 20, 2017
1 parent 1f41544 commit 0b60b37
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,19 +75,21 @@ install:
else
cp -r $(dirname $($SYSTEM_PYTHON -c 'import PyQt4; print(PyQt4.__file__)')) ~/virtualenv/python2.7/lib/python2.7/site-packages/;
cp $($SYSTEM_PYTHON -c 'import sip; print(sip.__file__)') ~/virtualenv/python2.7/lib/python2.7/site-packages/;
pip install -U numpy scipy scikit-image;
pip install -q -U pip setuptools;
pip install -q -U numpy scipy scikit-image;
fi;
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
pyenv global $PYTHON_VERSION;
brew install pyqt;
cp -r /usr/local/lib/python2.7/site-packages/PyQt5 ~/.pyenv/versions/2.7.10/lib/python2.7/site-packages/;
cp /usr/local/lib/python2.7/site-packages/sip.so ~/.pyenv/versions/2.7.10/lib/python2.7/site-packages/;
pip install -U numpy scipy scikit-image;
pip install -q -U pip setuptools;
pip install -q -U numpy scipy scikit-image;
fi
- python setup.py install
- pip install .

before_script:
- pip install nose
- pip install -q nose

script:
- nosetests tests

0 comments on commit 0b60b37

Please sign in to comment.