summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/resmokelib/config.py')
-rw-r--r--buildscripts/resmokelib/config.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/buildscripts/resmokelib/config.py b/buildscripts/resmokelib/config.py
index 21b37a91f35..7141e206602 100644
--- a/buildscripts/resmokelib/config.py
+++ b/buildscripts/resmokelib/config.py
@@ -155,6 +155,9 @@ DEFAULTS = {
# Generate multiversion exclude tags options
"exclude_tags_file_path": "generated_resmoke_config/multiversion_exclude_tags.yml",
+
+ # Limit the number of tests to execute
+ "max_test_queue_size": None,
}
_SuiteOptions = collections.namedtuple("_SuiteOptions", [
@@ -540,6 +543,9 @@ UNDO_RECORDER_PATH = None
# # Generate multiversion exclude tags options
EXCLUDE_TAGS_FILE_PATH = None
+# Limit the number of tests to execute
+MAX_TEST_QUEUE_SIZE = None
+
##
# Internally used configuration options that aren't exposed to the user
##