mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +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",
|
||||
"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 ",
|
||||
"python": "3.5"
|
||||
|
|
@ -49,14 +41,6 @@
|
|||
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=minimal ",
|
||||
"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 ",
|
||||
"python": "3.6"
|
||||
|
|
|
|||
|
|
@ -39,8 +39,11 @@ matrix.append({
|
|||
})
|
||||
|
||||
|
||||
for python, requirements in itertools.product(python_versions,
|
||||
("devel", "release", "minimal")):
|
||||
for python, requirements in itertools.product(
|
||||
python_versions,
|
||||
# XXX: Use `devel` here for recent python versions:
|
||||
("release", "minimal")
|
||||
):
|
||||
dav_servers = ("radicale", "xandikos")
|
||||
|
||||
if python == latest_python and requirements == "release":
|
||||
|
|
|
|||
Loading…
Reference in a new issue