Skip to content

Commit

Permalink
Temporarily enable all tests on all branch builds
Browse files Browse the repository at this point in the history
  • Loading branch information
imheresamir committed Aug 8, 2023
1 parent 0c6c4b2 commit 32f09ed
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pipeline {
parameters {
booleanParam(
name: 'NIGHTLY',
defaultValue: false,
defaultValue: true, // Temporarily set to true for all branches
description: 'Run tests on all agents and environment including: FIPS'
)
string(
Expand Down Expand Up @@ -1170,5 +1170,9 @@ def defaultCucumberFilterTags(env) {
}

// For all other branch builds, only run the @smoke tests by default
return '@smoke'
// return '@smoke'

// Temporarily run all tests on all branches. The above line should be
// uncommented when 13.1 is released.
return ''
}

0 comments on commit 32f09ed

Please sign in to comment.