mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Run flake8 on Python 3.5 only.
This commit is contained in:
parent
2e3ebd814a
commit
d28527c6ea
2 changed files with 29 additions and 37 deletions
56
.travis.yml
56
.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"
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in a new issue