Skip to content

Commit

Permalink
Added the where argument for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
fmder committed Jun 1, 2014
1 parent 2ff20a8 commit 1bee68f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ matrix:
env: NUMPY="git+https://bitbucket.org/pypy/numpy.git"
# command to install dependencies
install:
- python setup.py install
- pip install .
- pip install $NUMPY
# command to run tests
script: nosetests
script:
- if [[ ${TRAVIS_PYTHON_VERSION%%.*} == '3' ]]; then
nosetests --where=build/lib
else
nosetests
fi

0 comments on commit 1bee68f

Please sign in to comment.