From c69c21901d5e11cec616cf0f5aa03155b9ef7cd7 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 16 May 2016 07:35:25 +0200 Subject: [PATCH] Makefile: user install on osx --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9b76f3af..2e691203 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,8 @@ test_pure_python: -rm -f dist/*.egg -pip install -v -r requirements.txt CFLAGS=-Os python setup.py bdist_egg - easy_install dist/*.egg + [ "$(TRAVIS_OS_NAME)" == "osx" ] && easy_install --user dist/*.egg || \ + easy_install dist/*.egg nose2 -N 4 pip uninstall -v -y aubio -- 2.11.0