Commit 2bf09199 authored by DurgeshSamant's avatar DurgeshSamant

Minor Fix

Error OSX: pip command not found #8829. Fixed as per https://github.com/travis-ci/travis-ci/issues/8829
parent 5d7e3a26
......@@ -15,7 +15,8 @@ install:
brew install cartr/qt4/qt
;
fi
- sudo -H pip install --upgrade nose numpy
- sudo -H pip2 install --upgrade nose numpy
- sudo -H pip3 install --upgrade nose numpy
os:
- linux
- osx
......@@ -27,4 +28,4 @@ env:
script:
- mkdir build && cd build
- cmake -DCMAKE_BUILD_TYPE=RelwithDebInfo .. && make -j4 && make install
- cd .. && pip install --user . && nosetests --exe -vd tests/test_basic.py
- cd .. && pip3 install --user . && nosetests --exe -vd tests/test_basic.py
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment