From e31cacb075e1b1521af110ccaf592b72f6505f31 Mon Sep 17 00:00:00 2001 From: James Butters Date: Tue, 1 Feb 2022 17:16:55 +0000 Subject: [PATCH] Revert "activate crystalball selenium" This reverts commit b7c3250955458c2c8073922a6996d7cd5aa1930f. Reason for revert: needs more work Change-Id: Id7ebb79b11315d5ea89b473d9caca837230e6c90 Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/283268 Reviewed-by: Aaron Ogata Tested-by: James Butters QA-Review: James Butters Product-Review: James Butters --- Jenkinsfile.rspecq | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile.rspecq b/Jenkinsfile.rspecq index 757a808584f50..da402a88b1465 100644 --- a/Jenkinsfile.rspecq +++ b/Jenkinsfile.rspecq @@ -80,8 +80,8 @@ def computeTestCount() { // split crystalball_spec def seleniumTests = specUnique.findAll { it.contains('/selenium') } def rspecTests = specUnique - seleniumTests - env.CRYSTALBALL_SELENIUM = env.JOB_NAME.endsWith('proofs-of-concept/test-queue') ? '' : seleniumTests.join(' ').trim() - env.CRYSTALBALL_RSPEC = env.JOB_NAME.endsWith('test-suites/test-queue') ? '' : rspecTests.join(' ').trim() + env.CRYSTALBALL_SELENIUM = seleniumTests.join(' ') + env.CRYSTALBALL_RSPEC = rspecTests.join(' ') summaryMessage = "Map: $mapVersion\n" // Crystalball predictor returned empty text file @@ -89,7 +89,7 @@ def computeTestCount() { summaryMessage += "No App Code Detected! - Running everything!" crystalballColor = 'danger' // Do not run full builds while still testing - env.CRYSTALBALL_SKIP = env.JOB_NAME.endsWith('test-suites/test-queue') ? 'false' : 'true' + env.CRYSTALBALL_SKIP = 'true' return } // Crystalball predictor returned "." @@ -97,7 +97,7 @@ def computeTestCount() { summaryMessage += "New File Detected! - Complete Suite Re-run!" crystalballColor = 'danger' // Do not run full builds while still testing - env.CRYSTALBALL_SKIP = env.JOB_NAME.endsWith('test-suites/test-queue') ? 'false' : 'true' + env.CRYSTALBALL_SKIP = 'true' return }