mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Test nextcloud (#473)
This commit is contained in:
parent
5f302b0206
commit
c6e66dc682
4 changed files with 31 additions and 2 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -10,3 +10,6 @@
|
|||
[submodule "tests/storage/servers/davical"]
|
||||
path = tests/storage/servers/davical
|
||||
url = https://github.com/vdirsyncer/davical-testserver
|
||||
[submodule "tests/storage/servers/nextcloud"]
|
||||
path = tests/storage/servers/nextcloud
|
||||
url = git@github.com:vdirsyncer/nextcloud-testserver
|
||||
|
|
|
|||
24
.travis.yml
24
.travis.yml
|
|
@ -42,6 +42,18 @@
|
|||
"env": "BUILD=test DAV_SERVER=owncloud REQUIREMENTS=minimal BUILD_PRS=false",
|
||||
"python": "2.7"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=nextcloud REQUIREMENTS=devel BUILD_PRS=false",
|
||||
"python": "2.7"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=nextcloud REQUIREMENTS=release BUILD_PRS=false",
|
||||
"python": "2.7"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=nextcloud REQUIREMENTS=minimal BUILD_PRS=false",
|
||||
"python": "2.7"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=baikal REQUIREMENTS=devel BUILD_PRS=false",
|
||||
"python": "2.7"
|
||||
|
|
@ -138,6 +150,18 @@
|
|||
"env": "BUILD=test DAV_SERVER=owncloud REQUIREMENTS=minimal BUILD_PRS=false",
|
||||
"python": "3.5"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=nextcloud REQUIREMENTS=devel BUILD_PRS=false",
|
||||
"python": "3.5"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=nextcloud REQUIREMENTS=release BUILD_PRS=false",
|
||||
"python": "3.5"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=nextcloud REQUIREMENTS=minimal BUILD_PRS=false",
|
||||
"python": "3.5"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=baikal REQUIREMENTS=devel BUILD_PRS=false",
|
||||
"python": "3.5"
|
||||
|
|
|
|||
|
|
@ -45,10 +45,11 @@ for python in ("2.7", "3.3", "3.4", "3.5", "pypy"):
|
|||
})
|
||||
|
||||
if python == "3.5":
|
||||
dav_servers = ("radicale", "owncloud", "baikal", "davical")
|
||||
dav_servers = ("radicale", "owncloud", "nextcloud", "baikal",
|
||||
"davical")
|
||||
rs_servers = ("mysteryshack",)
|
||||
elif python == "2.7":
|
||||
dav_servers = ("owncloud", "baikal", "davical")
|
||||
dav_servers = ("owncloud", "nextcloud", "baikal", "davical")
|
||||
rs_servers = ("mysteryshack",)
|
||||
elif python == "pypy":
|
||||
dav_servers = ()
|
||||
|
|
|
|||
1
tests/storage/servers/nextcloud
Submodule
1
tests/storage/servers/nextcloud
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit b8fb35f556eab60502484dee43a14566806642af
|
||||
Loading…
Reference in a new issue