mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
add information on DAV_SERVER envvar to readme
This commit is contained in:
parent
ff688ca2b9
commit
ceb764b67d
2 changed files with 17 additions and 6 deletions
|
|
@ -5,8 +5,7 @@ env:
|
|||
- DAV_SERVER=radicale RADICALE_STORAGE=database
|
||||
- DAV_SERVER=radicale_git RADICALE_STORAGE=filesystem
|
||||
- DAV_SERVER=radicale_git RADICALE_STORAGE=database
|
||||
- DAV_SERVER=owncloud
|
||||
|
||||
install:
|
||||
- "./install-deps.sh"
|
||||
|
||||
script: py.test
|
||||
install: "./install-deps.sh"
|
||||
script: "./run-tests.sh tests/"
|
||||
|
|
|
|||
16
README.rst
16
README.rst
|
|
@ -30,5 +30,17 @@ How to run the tests
|
|||
|
||||
::
|
||||
|
||||
sh install_deps.sh
|
||||
py.test
|
||||
sh install-deps.sh
|
||||
sh run-tests.sh
|
||||
|
||||
The environment variable ``DAV_SERVER`` specifies which CalDAV/CardDAV server
|
||||
to test against. It has to be set for both scripts, ``install-deps.sh`` and
|
||||
``run-tests.sh``.
|
||||
|
||||
- ``DAV_SERVER=radicale``: The default, installs the latest Radicale release
|
||||
from PyPI. Very fast, because no additional processes are needed.
|
||||
- ``DAV_SERVER=radicale_git``: Same as ``radicale``, except that the
|
||||
installation happens from their git repo. ``install-deps.sh`` is slightly
|
||||
slower with this.
|
||||
- ``DAV_SERVER=owncloud``: Uses latest ownCloud release. Very slow
|
||||
installation, very slow tests.
|
||||
|
|
|
|||
Loading…
Reference in a new issue