mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-30 09:45:53 +00:00
Since version 3.7, icalendar supports the preserving of the order of the ICS file's parameters and properties. We can use this to avoid unnecessary changes for .ics files managed with singlefilestorage.
18 lines
619 B
YAML
18 lines
619 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "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'
|
|
- BUILD=tests DAV_SERVER=radicale RADICALE_BACKEND=filesystem REQUIREMENTS=devel
|
|
- BUILD=tests DAV_SERVER=radicale RADICALE_BACKEND=database REQUIREMENTS=devel
|
|
- BUILD=tests DAV_SERVER=owncloud REQUIREMENTS=release
|
|
- BUILD=style
|
|
|
|
install:
|
|
- "./build.sh install"
|
|
- '[ -z "$PKGS" ] || pip install $PKGS'
|
|
script:
|
|
- "./build.sh run"
|