mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Use wheels in travis
This commit is contained in:
parent
15658b1f31
commit
7cc53cde6f
1 changed files with 6 additions and 1 deletions
|
|
@ -1,10 +1,15 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
echo "The shell is $SHELL"
|
echo "The shell is $SHELL"
|
||||||
set -e
|
set -e
|
||||||
PIP_INSTALL="pip install --use-mirrors"
|
|
||||||
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale_filesystem
|
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale_filesystem
|
||||||
[ -n "$REQUIREMENTS" ] || REQUIREMENTS=release
|
[ -n "$REQUIREMENTS" ] || REQUIREMENTS=release
|
||||||
|
|
||||||
|
if [ "$IS_TRAVIS" = "true" ]; then
|
||||||
|
PIP_INSTALL="pip install --use-wheel --no-index --find-links=http://dev.unterwaditzer.net/vdirsyncer/wheels/"
|
||||||
|
pip install --upgrade wheel pip setuptools
|
||||||
|
else:
|
||||||
|
PIP_INSTALL="pip install"
|
||||||
|
fi
|
||||||
$PIP_INSTALL --editable .
|
$PIP_INSTALL --editable .
|
||||||
$PIP_INSTALL -r requirements.txt
|
$PIP_INSTALL -r requirements.txt
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue