vdirsyncer/.travis.yml
Markus Unterwaditzer c83883d976 Fix Travis
At some point Travis apparently decided to set the default of the `sudo`
option to `false`. But that would mean I had to whitelist every package,
which is not acceptable.

http://docs.travis-ci.com/user/workers/container-based-infrastructure/
2015-05-27 15:48:14 +02:00

32 lines
893 B
YAML

sudo: true
language: python
python:
- "2.7"
- "pypy"
- "3.3"
- "3.4"
env:
- BUILD=test DAV_SERVER=radicale RADICALE_BACKEND=filesystem REQUIREMENTS=release
# Radicale with filesystem storage (default)
- BUILD=test DAV_SERVER=radicale RADICALE_BACKEND=filesystem REQUIREMENTS=release
PKGS='lxml==3.0 requests==2.4.1 requests_toolbelt==0.4.0 click==3.1'
# Minimal requirements
- BUILD=test DAV_SERVER=radicale RADICALE_BACKEND=filesystem REQUIREMENTS=devel
# Radicale-git with filesystem storage (default)
- BUILD=test DAV_SERVER=owncloud REQUIREMENTS=release
# Latest ownCloud release
- BUILD=test DAV_SERVER=baikal REQUIREMENTS=release
# Latest Baikal release
- BUILD=style
# flake8 with plugins
install:
- "make install-$BUILD"
- '[ -z "$PKGS" ] || pip install $PKGS'
script:
- "make $BUILD"