mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Don't test any servers under Pypy3
This commit is contained in:
parent
c0a6fb1b41
commit
d5db9357f9
2 changed files with 13 additions and 11 deletions
14
.travis.yml
14
.travis.yml
|
|
@ -104,6 +104,10 @@
|
||||||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release BUILD_PRS=true ",
|
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release BUILD_PRS=true ",
|
||||||
"python": "3.6"
|
"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 ",
|
"env": "BUILD=test DAV_SERVER=owncloud REQUIREMENTS=release BUILD_PRS=true ",
|
||||||
"python": "3.6"
|
"python": "3.6"
|
||||||
|
|
@ -124,10 +128,6 @@
|
||||||
"env": "BUILD=test DAV_SERVER=fastmail REQUIREMENTS=release BUILD_PRS=false ",
|
"env": "BUILD=test DAV_SERVER=fastmail REQUIREMENTS=release BUILD_PRS=false ",
|
||||||
"python": "3.6"
|
"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 ",
|
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=minimal BUILD_PRS=true ",
|
||||||
"python": "3.6"
|
"python": "3.6"
|
||||||
|
|
@ -137,15 +137,15 @@
|
||||||
"python": "3.6"
|
"python": "3.6"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel BUILD_PRS=true ",
|
"env": "BUILD=test DAV_SERVER=skip REQUIREMENTS=devel BUILD_PRS=true ",
|
||||||
"python": "pypy3"
|
"python": "pypy3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release BUILD_PRS=true ",
|
"env": "BUILD=test DAV_SERVER=skip REQUIREMENTS=release BUILD_PRS=true ",
|
||||||
"python": "pypy3"
|
"python": "pypy3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=minimal BUILD_PRS=true ",
|
"env": "BUILD=test DAV_SERVER=skip REQUIREMENTS=minimal BUILD_PRS=true ",
|
||||||
"python": "pypy3"
|
"python": "pypy3"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -46,13 +46,15 @@ matrix.append({
|
||||||
|
|
||||||
for python, requirements in itertools.product(python_versions,
|
for python, requirements in itertools.product(python_versions,
|
||||||
("devel", "release", "minimal")):
|
("devel", "release", "minimal")):
|
||||||
dav_servers = ("radicale",)
|
if python == "pypy3":
|
||||||
|
dav_servers = ("skip",)
|
||||||
|
else:
|
||||||
|
dav_servers = ("radicale", "xandikos")
|
||||||
|
|
||||||
rs_servers = ()
|
rs_servers = ()
|
||||||
if python == latest_python and requirements == "release":
|
if python == latest_python and requirements == "release":
|
||||||
dav_servers += ("owncloud", "nextcloud", "baikal", "davical",
|
dav_servers += ("owncloud", "nextcloud", "baikal", "davical",
|
||||||
"fastmail")
|
"fastmail")
|
||||||
if python != "pypy3":
|
|
||||||
dav_servers += ("xandikos",)
|
|
||||||
|
|
||||||
for server_type, server in itertools.chain(
|
for server_type, server in itertools.chain(
|
||||||
(("REMOTESTORAGE", x) for x in rs_servers),
|
(("REMOTESTORAGE", x) for x in rs_servers),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue