From 3576fc59a015f8540d378d793a4ff55d99b8ac82 Mon Sep 17 00:00:00 2001 From: davidgisbey Date: Fri, 28 Oct 2022 15:16:49 +0100 Subject: [PATCH] Remove publishing e2e tests from Jenkinsfile This commit removes the E2E tests from this app's CI pipeline. Once merged, the Jenkins CI server will no longer kick off a run of the publishing-e2e-tests job when new PRs are opened. This change is the first step in the overall decommissioning process, and will be applied to every application currently running the E2E tests. --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 23086ff32..925724db7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,6 +5,5 @@ library("govuk") REPOSITORY = 'government-frontend' node { - govuk.setEnvar("PUBLISHING_E2E_TESTS_COMMAND", "test-government-frontend") - govuk.buildProject(publishingE2ETests: true) + govuk.buildProject() }