mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Disable tests for xandikos on pypy3
This commit is contained in:
parent
fb558e5139
commit
527acb2617
2 changed files with 7 additions and 17 deletions
20
.travis.yml
20
.travis.yml
|
|
@ -104,10 +104,6 @@
|
|||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release BUILD_PRS=true ",
|
||||
"python": "3.6"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=release BUILD_PRS=true ",
|
||||
"python": "3.6"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=owncloud REQUIREMENTS=release BUILD_PRS=true ",
|
||||
"python": "3.6"
|
||||
|
|
@ -132,6 +128,10 @@
|
|||
"env": "BUILD=test DAV_SERVER=fastmail REQUIREMENTS=release BUILD_PRS=false ",
|
||||
"python": "3.6"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=release BUILD_PRS=true ",
|
||||
"python": "3.6"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=minimal BUILD_PRS=true ",
|
||||
"python": "3.6"
|
||||
|
|
@ -144,26 +144,14 @@
|
|||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel BUILD_PRS=true ",
|
||||
"python": "pypy3"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=devel BUILD_PRS=true ",
|
||||
"python": "pypy3"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release BUILD_PRS=true ",
|
||||
"python": "pypy3"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=release BUILD_PRS=true ",
|
||||
"python": "pypy3"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=minimal BUILD_PRS=true ",
|
||||
"python": "pypy3"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=minimal BUILD_PRS=true ",
|
||||
"python": "pypy3"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test ETESYNC_TESTS=true REQUIREMENTS=latest BUILD_PRS=true ",
|
||||
"python": "3.6"
|
||||
|
|
|
|||
|
|
@ -46,11 +46,13 @@ matrix.append({
|
|||
|
||||
for python, requirements in itertools.product(python_versions,
|
||||
("devel", "release", "minimal")):
|
||||
dav_servers = ("radicale", "xandikos")
|
||||
dav_servers = ("radicale",)
|
||||
rs_servers = ()
|
||||
if python == latest_python and requirements == "release":
|
||||
dav_servers += ("owncloud", "nextcloud", "baikal", "davical", "icloud",
|
||||
"fastmail")
|
||||
if python != "pypy3":
|
||||
dav_servers += ("xandikos",)
|
||||
|
||||
for server_type, server in itertools.chain(
|
||||
(("REMOTESTORAGE", x) for x in rs_servers),
|
||||
|
|
|
|||
Loading…
Reference in a new issue