Skip to content

Commit

Permalink
traivs: fix osx python exec naming
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Jul 26, 2017
1 parent 6ed753a commit 434c31b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ install:
- if [ "$TYPE" == "osx" ] && [ "$PYVER" == "3" ]; then python3 -m pip install virtualenv; fi
- if [ "$TYPE" == "osx" ] && [ "$PYVER" == "3" ]; then virtualenv venv -p python3; fi
- if [ "$TYPE" == "osx" ] && [ "$PYVER" == "2" ]; then brew install python; fi
- if [ "$TYPE" == "osx" ] && [ "$PYVER" == "2" ]; then python -m pip install virtualenv; fi
- if [ "$TYPE" == "osx" ] && [ "$PYVER" == "2" ]; then virtualenv venv -p python; fi
- if [ "$TYPE" == "osx" ] && [ "$PYVER" == "2" ]; then python2 -m pip install virtualenv; fi
- if [ "$TYPE" == "osx" ] && [ "$PYVER" == "2" ]; then virtualenv venv -p python2; fi
- if [ "$TYPE" == "osx" ]; then source venv/bin/activate; fi
- if [ "$TYPE" == "osx" ] || [ "$TYPE" == "linux" ]; then python -m pip install pytest hypothesis; fi

Expand Down

0 comments on commit 434c31b

Please sign in to comment.