Skip to content

Commit

Permalink
Disable tests and enable nightly pipeline (#1701)
Browse files Browse the repository at this point in the history
  • Loading branch information
JayAshton authored Nov 4, 2024
1 parent 808667a commit 2dbc1ea
Showing 1 changed file with 3 additions and 19 deletions.
22 changes: 3 additions & 19 deletions Jenkinsfile_nightly_disabled → Jenkinsfile_nightly
Original file line number Diff line number Diff line change
Expand Up @@ -61,33 +61,17 @@ withNightlyPipeline(type, product, component) {
env.TEST_URL = "https://privatelaw.aat.platform.hmcts.net/"
env.PRL_CITIZEN_URL = params.FRONTEND_URL
loadVaultSecrets(secrets)
// Tests disabled here as they run in prl-e2e-tests instead
// enableMutationTest()
enableFortifyScan()
enableFullFunctionalTest(200)
enableCrossBrowserTest(60)
//enableFullFunctionalTest(200)
//enableCrossBrowserTest(60)
enableFortifyScan()
enableSecurityScan()

afterAlways('test') {
steps.archiveArtifacts allowEmptyArchive: true, artifacts: 'coverage/**/*'
}

before('crossBrowserTest') {
}

afterAlways('crossBrowserTest') {
steps.archiveArtifacts allowEmptyArchive: true, artifacts: 'output/**/*'
}

before('fullFunctionalTest') {
env.PARALLEL_CHUNKS = params.FUNCTIONAL_TESTS_WORKERS
}

afterAlways('fullFunctionalTest') {
steps.archiveArtifacts allowEmptyArchive: true, artifacts: 'test/functional/output/**/*'
steps.archiveArtifacts allowEmptyArchive: true, artifacts: 'output/**/*'
}

afterAlways('fortify-scan') {
steps.archiveArtifacts allowEmptyArchive: true, artifacts: '**/Fortify Scan/**/*'
steps.archiveArtifacts allowEmptyArchive: true, artifacts: 'build/reports/**/*'
Expand Down

0 comments on commit 2dbc1ea

Please sign in to comment.