mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Install remotestorage extra in travis
This commit is contained in:
parent
435b25fbca
commit
054a0f8cd2
1 changed files with 5 additions and 1 deletions
6
Makefile
6
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 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue