From 4d4c48ca1219b8aaea1c6763c53e4ccf337157bf Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sun, 11 Jan 2015 14:33:51 +0100 Subject: [PATCH] Test minimal requirements --- .travis.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3cd73b5..e354623 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,13 +5,29 @@ python: - "3.4" env: - BUILD=tests DAV_SERVER=radicale RADICALE_BACKEND=filesystem REQUIREMENTS=release - - BUILD=tests DAV_SERVER=radicale RADICALE_BACKEND=filesystem REQUIREMENTS=release PKGS='icalendar==3.6' + # Radicale with filesystem storage (default) + + - BUILD=tests DAV_SERVER=radicale RADICALE_BACKEND=filesystem REQUIREMENTS=release + PKGS='icalendar==3.6 lxml==3.0 requests==2.4.1 requests_toolbelt==0.3.0 click==3.1' + # Minimal requirements + - BUILD=tests DAV_SERVER=radicale RADICALE_BACKEND=filesystem REQUIREMENTS=devel + # Radicale-git with filesystem storage (default) + - BUILD=tests DAV_SERVER=radicale RADICALE_BACKEND=multifilesystem REQUIREMENTS=devel + # Radicale-git with multifilesystem storage + - BUILD=tests DAV_SERVER=radicale RADICALE_BACKEND=database REQUIREMENTS=devel + # Radicale-git with database storage (release's database storage is broken) + - BUILD=tests DAV_SERVER=owncloud REQUIREMENTS=release + # Latest ownCloud release + - BUILD=tests DAV_SERVER=baikal REQUIREMENTS=release + # Latest Baikal release + - BUILD=style + # flake8 with plugins install: - "./build.sh install_$BUILD"