mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Don't test with devel versions
There's no chance this is going to work -- we've a lot of catching up to do in this aspect.
This commit is contained in:
parent
7c04289ed4
commit
470c2c6630
2 changed files with 5 additions and 18 deletions
16
.travis.yml
16
.travis.yml
|
|
@ -25,14 +25,6 @@
|
||||||
"env": "BUILD=style",
|
"env": "BUILD=style",
|
||||||
"python": "3.6"
|
"python": "3.6"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel ",
|
|
||||||
"python": "3.5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=devel ",
|
|
||||||
"python": "3.5"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release ",
|
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release ",
|
||||||
"python": "3.5"
|
"python": "3.5"
|
||||||
|
|
@ -49,14 +41,6 @@
|
||||||
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=minimal ",
|
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=minimal ",
|
||||||
"python": "3.5"
|
"python": "3.5"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel ",
|
|
||||||
"python": "3.6"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=devel ",
|
|
||||||
"python": "3.6"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release ",
|
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release ",
|
||||||
"python": "3.6"
|
"python": "3.6"
|
||||||
|
|
|
||||||
|
|
@ -39,8 +39,11 @@ matrix.append({
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
for python, requirements in itertools.product(python_versions,
|
for python, requirements in itertools.product(
|
||||||
("devel", "release", "minimal")):
|
python_versions,
|
||||||
|
# XXX: Use `devel` here for recent python versions:
|
||||||
|
("release", "minimal")
|
||||||
|
):
|
||||||
dav_servers = ("radicale", "xandikos")
|
dav_servers = ("radicale", "xandikos")
|
||||||
|
|
||||||
if python == latest_python and requirements == "release":
|
if python == latest_python and requirements == "release":
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue