Skip to content

Commit 470c2c6

Browse files
author
Hugo Osvaldo Barrera
committed
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.
1 parent 7c04289 commit 470c2c6

File tree

2 files changed

+5
-18
lines changed

2 files changed

+5
-18
lines changed

.travis.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,6 @@
2525
"env": "BUILD=style",
2626
"python": "3.6"
2727
},
28-
{
29-
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel ",
30-
"python": "3.5"
31-
},
32-
{
33-
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=devel ",
34-
"python": "3.5"
35-
},
3628
{
3729
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release ",
3830
"python": "3.5"
@@ -49,14 +41,6 @@
4941
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=minimal ",
5042
"python": "3.5"
5143
},
52-
{
53-
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel ",
54-
"python": "3.6"
55-
},
56-
{
57-
"env": "BUILD=test DAV_SERVER=xandikos REQUIREMENTS=devel ",
58-
"python": "3.6"
59-
},
6044
{
6145
"env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release ",
6246
"python": "3.6"

scripts/make_travisconf.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,11 @@
3939
})
4040

4141

42-
for python, requirements in itertools.product(python_versions,
43-
("devel", "release", "minimal")):
42+
for python, requirements in itertools.product(
43+
python_versions,
44+
# XXX: Use `devel` here for recent python versions:
45+
("release", "minimal")
46+
):
4447
dav_servers = ("radicale", "xandikos")
4548

4649
if python == latest_python and requirements == "release":

0 commit comments

Comments
 (0)