Skip to content

Commit 4090857

Browse files
committed
test install pip on macosx
1 parent 58387b9 commit 4090857

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.travis/before_install.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
44

55
# Install some custom requirements on OS X
66
# e.g. brew install pyenv-virtualenv
7-
brew update
8-
brew install python
7+
#brew update
8+
#brew install python
9+
sudo easy_install -U pip
910

1011
else
1112
# Install some custom requirements on Linux

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ test : FORCE pep8
4444
$(PYTHON) -m pytest -v test/ --cov=ot --cov-report html:cov_html
4545

4646
pytest : FORCE
47-
$(PYTHON) -m py.test -v test/ --cov=ot
47+
$(PYTHON) -m pytest -v test/ --cov=ot
4848

4949
uploadpypi :
5050
#python setup.py register

0 commit comments

Comments
 (0)