Install remotestorage extra in travis

This commit is contained in:
Markus Unterwaditzer 2015-12-21 00:10:48 +01:00
parent 435b25fbca
commit 054a0f8cd2

View file

@ -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 \