From 054a0f8cd2069a5b2372dbc3fce859c357b7db02 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Mon, 21 Dec 2015 00:10:48 +0100 Subject: [PATCH] Install remotestorage extra in travis --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 38963c8..9bd0b4b 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,11 @@ release: python setup.py sdist bdist_wheel upload install-dev: - pip install -e . + set -xe && if [ "$$REMOTESTORAGE_SERVER" != "skip" ]; then \ + pip install -e .[remotestorage]; \ + else \ + pip install -e .; \ + fi set -xe && if [ "$$REQUIREMENTS" = "devel" ]; then \ pip install -U --force-reinstall git+https://github.com/kennethreitz/requests; \ elif [ "$$REQUIREMENTS" = "minimal" ]; then \