Run flake8 on Python 3.5 only.

This commit is contained in:
Markus Unterwaditzer 2016-10-04 20:45:18 +02:00
parent 2e3ebd814a
commit d28527c6ea
2 changed files with 29 additions and 37 deletions

View file

@ -14,42 +14,34 @@
"language": "python", "language": "python",
"matrix": { "matrix": {
"include": [ "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", "env": "BUILD=style BUILD_PRS=true",
"python": "3.5" "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", "env": "BUILD=test REMOTESTORAGE_SERVER=mysteryshack REQUIREMENTS=devel BUILD_PRS=false",
"python": "3.5" "python": "3.5"

View file

@ -38,12 +38,12 @@ cfg['script'] = [script("""
matrix = [] matrix = []
cfg['matrix'] = {'include': matrix} cfg['matrix'] = {'include': matrix}
for python in ("3.3", "3.4", "3.5"): matrix.append({
matrix.append({ 'python': "3.5",
'python': python, 'env': 'BUILD=style BUILD_PRS=true'
'env': 'BUILD=style BUILD_PRS=true' })
})
for python in ("3.3", "3.4", "3.5"):
if python == "3.5": if python == "3.5":
dav_servers = ("radicale", "owncloud", "nextcloud", "baikal", dav_servers = ("radicale", "owncloud", "nextcloud", "baikal",
"davical") "davical")