mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-05 10:45:51 +00:00
* Revert "Don't test development Radicale"
This reverts commit 7a5241101e.
* Fix Radicale test setup
* Radicale is very tolerant
* Simplify test such that output is more predictable
* Runtime version check for Radicale
* Don't create user explicitly
* stylefix
* Shorter tracebacks
Travis logs are very hard to read
12 lines
322 B
Bash
12 lines
322 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$REQUIREMENTS" = "release" ] || [ "$REQUIREMENTS" = "minimal" ]; then
|
|
radicale_pkg="radicale"
|
|
elif [ "$REQUIREMENTS" = "devel" ]; then
|
|
radicale_pkg="git+https://github.com/Kozea/Radicale.git"
|
|
else
|
|
echo "Invalid requirements envvar"
|
|
false
|
|
fi
|
|
pip install wsgi_intercept $radicale_pkg
|