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:
Hugo Osvaldo Barrera 2020-06-08 14:38:06 +02:00
parent 7c04289ed4
commit 470c2c6630
2 changed files with 5 additions and 18 deletions

View file

@ -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"

View file

@ -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":