diff --git a/.travis.yml b/.travis.yml index 6c6045b..361e635 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,42 +14,34 @@ "language": "python", "matrix": { "include": [ - { - "env": "BUILD=style BUILD_PRS=true", - "python": "3.3" - }, - { - "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel BUILD_PRS=false", - "python": "3.3" - }, - { - "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release BUILD_PRS=false", - "python": "3.3" - }, - { - "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=minimal BUILD_PRS=false", - "python": "3.3" - }, - { - "env": "BUILD=style BUILD_PRS=true", - "python": "3.4" - }, - { - "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel BUILD_PRS=false", - "python": "3.4" - }, - { - "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release BUILD_PRS=false", - "python": "3.4" - }, - { - "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=minimal BUILD_PRS=false", - "python": "3.4" - }, { "env": "BUILD=style BUILD_PRS=true", "python": "3.5" }, + { + "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel BUILD_PRS=false", + "python": "3.3" + }, + { + "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release BUILD_PRS=false", + "python": "3.3" + }, + { + "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=minimal BUILD_PRS=false", + "python": "3.3" + }, + { + "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel BUILD_PRS=false", + "python": "3.4" + }, + { + "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=release BUILD_PRS=false", + "python": "3.4" + }, + { + "env": "BUILD=test DAV_SERVER=radicale REQUIREMENTS=minimal BUILD_PRS=false", + "python": "3.4" + }, { "env": "BUILD=test REMOTESTORAGE_SERVER=mysteryshack REQUIREMENTS=devel BUILD_PRS=false", "python": "3.5" diff --git a/scripts/make_travisconf.py b/scripts/make_travisconf.py index ea17b39..d225734 100644 --- a/scripts/make_travisconf.py +++ b/scripts/make_travisconf.py @@ -38,12 +38,12 @@ cfg['script'] = [script(""" matrix = [] cfg['matrix'] = {'include': matrix} -for python in ("3.3", "3.4", "3.5"): - matrix.append({ - 'python': python, - 'env': 'BUILD=style BUILD_PRS=true' - }) +matrix.append({ + 'python': "3.5", + 'env': 'BUILD=style BUILD_PRS=true' +}) +for python in ("3.3", "3.4", "3.5"): if python == "3.5": dav_servers = ("radicale", "owncloud", "nextcloud", "baikal", "davical")