Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Phpunit8 20191130 #36499

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
23 changes: 11 additions & 12 deletions .drone.starlark
Expand Up @@ -25,12 +25,11 @@ config = {
'phpunit': {
'allDatabases' : {
'phpVersions': [
'7.1',
'7.2',
]
},
'reducedDatabases' : {
'phpVersions': [
'7.2',
'7.3',
],
'databases': [
Expand All @@ -41,7 +40,7 @@ config = {
},
'external-samba-windows' : {
'phpVersions': [
'7.1',
'7.2',
],
'databases': [
'sqlite',
Expand All @@ -60,7 +59,7 @@ config = {
},
'external-other' : {
'phpVersions': [
'7.1',
'7.2',
],
'databases': [
'sqlite',
Expand Down Expand Up @@ -270,7 +269,7 @@ def dependencies():
return pipelines

default = {
'phpVersions': ['7.1'],
'phpVersions': ['7.2'],
}

if 'defaults' in config:
Expand Down Expand Up @@ -468,7 +467,7 @@ def phpstan():
return pipelines

default = {
'phpVersions': ['7.1'],
'phpVersions': ['7.2'],
'logLevel': '2',
}

Expand Down Expand Up @@ -545,7 +544,7 @@ def phan():
return pipelines

default = {
'phpVersions': ['7.1', '7.2', '7.3'],
'phpVersions': ['7.2', '7.3'],
'logLevel': '2',
}

Expand Down Expand Up @@ -622,7 +621,7 @@ def litmus():
return pipelines

default = {
'phpVersions': ['7.1'],
'phpVersions': ['7.2'],
'logLevel': '2'
}

Expand Down Expand Up @@ -788,7 +787,7 @@ def dav():
return pipelines

default = {
'phpVersions': ['7.1'],
'phpVersions': ['7.2'],
'logLevel': '2'
}

Expand Down Expand Up @@ -886,7 +885,7 @@ def javascript():
default = {
'coverage': True,
'logLevel': '2',
'phpVersion': '7.1'
'phpVersion': '7.2'
}

if 'defaults' in config:
Expand Down Expand Up @@ -982,7 +981,7 @@ def phptests(testType):
errorFound = False

default = {
'phpVersions': ['7.1', '7.2', '7.3'],
'phpVersions': ['7.2', '7.3'],
'databases': [
'sqlite', 'mariadb:10.2', 'mariadb:10.3', 'mysql:5.5', 'mysql:5.7', 'mysql:8.0', 'postgres:9.4', 'postgres:10.3', 'oracle'
],
Expand Down Expand Up @@ -1166,7 +1165,7 @@ def acceptance():
default = {
'federatedServerVersions': [''],
'browsers': ['chrome'],
'phpVersions': ['7.1'],
'phpVersions': ['7.2'],
'databases': ['mariadb:10.2'],
'federatedServerNeeded': False,
'filterTags': '',
Expand Down