Skip to content

Commit

Permalink
temporarily disable firefox functional tests in PRs (#71116)
Browse files Browse the repository at this point in the history
Co-authored-by: spalger <spalger@users.noreply.github.com>
  • Loading branch information
Spencer and spalger authored Jul 8, 2020
1 parent c815c96 commit 54bd07f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions vars/tasks.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,13 @@ def test() {
}

def functionalOss(Map params = [:]) {
def config = params ?: [ciGroups: true, firefox: true, accessibility: true, pluginFunctional: true, visualRegression: false]
def config = params ?: [
ciGroups: true,
firefox: !githubPr.isPr(),
accessibility: true,
pluginFunctional: true,
visualRegression: false
]

task {
kibanaPipeline.buildOss(6)
Expand Down Expand Up @@ -73,7 +79,7 @@ def functionalOss(Map params = [:]) {
def functionalXpack(Map params = [:]) {
def config = params ?: [
ciGroups: true,
firefox: true,
firefox: !githubPr.isPr(),
accessibility: true,
pluginFunctional: true,
savedObjectsFieldMetrics: true,
Expand Down

0 comments on commit 54bd07f

Please sign in to comment.