Make lxml install faster by disabling optimizations

This averagely saves 30 secs or so.
This commit is contained in:
Markus Unterwaditzer 2014-03-23 15:38:30 +01:00
parent 50b912cbaf
commit 1a4035a5d8

View file

@ -1,7 +1,8 @@
#!/bin/sh
echo "The shell is $SHELL"
set -e
PIP_INSTALL="pip install --use-mirrors --upgrade"
[ "$IS_TRAVIS" = "true" ] && CFLAGS=-O0 pip install lxml || true
PIP_INSTALL="pip install --use-mirrors"
$PIP_INSTALL --editable .
$PIP_INSTALL -r requirements.txt
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale_filesystem