mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +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",
|
"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"
|
||||||
|
|
|
||||||
|
|
@ -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")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue