summaryrefslogtreecommitdiff
path: root/buildscripts/task_generation
diff options
context:
space:
mode:
authorMikhail Shchatko <mikhail.shchatko@mongodb.com>2022-02-15 08:24:01 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-02-15 08:51:14 +0000
commit7bd6a08e6ed1f308cba776cb1c71d9ccb3c0dfbe (patch)
tree0adcce63d973897c807ac38deb71b5f2efc6a9ef /buildscripts/task_generation
parentd02536f48aee7593077c12b1e60829b9441a7c08 (diff)
downloadmongo-7bd6a08e6ed1f308cba776cb1c71d9ccb3c0dfbe.tar.gz
SERVER-61686 Fix multiversion tags in burn_in_tests
Diffstat (limited to 'buildscripts/task_generation')
-rw-r--r--buildscripts/task_generation/constants.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildscripts/task_generation/constants.py b/buildscripts/task_generation/constants.py
index 31531d3592d..528d2a3e51b 100644
--- a/buildscripts/task_generation/constants.py
+++ b/buildscripts/task_generation/constants.py
@@ -13,7 +13,8 @@ MAX_WORKERS = 16
LOOKBACK_DURATION_DAYS = 14
MAX_TASK_PRIORITY = 99
GENERATED_CONFIG_DIR = "generated_resmoke_config"
-EXCLUDES_TAGS_FILE_PATH = os.path.join(GENERATED_CONFIG_DIR, "multiversion_exclude_tags.yml")
+EXCLUDES_TAGS_FILE = "multiversion_exclude_tags.yml"
+EXCLUDES_TAGS_FILE_PATH = os.path.join(GENERATED_CONFIG_DIR, EXCLUDES_TAGS_FILE)
GEN_PARENT_TASK = "generator_tasks"
EXPANSION_RE = re.compile(r"\${(?P<id>[a-zA-Z0-9_]+)(\|(?P<default>.*))?}")
BACKPORT_REQUIRED_TAG = "backport_required_multiversion"
@@ -22,3 +23,4 @@ BACKPORT_REQUIRED_TAG = "backport_required_multiversion"
CONFIGURE_EVG_CREDENTIALS = "configure evergreen api credentials"
DO_MULTIVERSION_SETUP = "do multiversion setup"
RUN_GENERATED_TESTS = "run generated tests"
+RUN_TESTS = "run tests"