mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
SERVER-27770 Remove other references to EXCLUDE_WITH_ALL_TAGS and
INCLUDE_WITH_ALL_TAGS
This commit is contained in:
parent
09a540b1b6
commit
422a7e6ddd
@ -86,19 +86,12 @@ DBTEST_EXECUTABLE = None
|
||||
# actually running them).
|
||||
DRY_RUN = None
|
||||
|
||||
# If set, then any jstests that have all of the specified tags will be excluded from the suite(s).
|
||||
EXCLUDE_WITH_ALL_TAGS = None
|
||||
|
||||
# If set, then any jstests that have any of the specified tags will be excluded from the suite(s).
|
||||
EXCLUDE_WITH_ANY_TAGS = None
|
||||
|
||||
# If true, then a test failure or error will cause resmoke.py to exit and not run any more tests.
|
||||
FAIL_FAST = None
|
||||
|
||||
# If set, then only jstests that have all of the specified tags will be run during the jstest
|
||||
# portion of the suite(s).
|
||||
INCLUDE_WITH_ALL_TAGS = None
|
||||
|
||||
# If set, then only jstests that have at least one of the specified tags will be run during the
|
||||
# jstest portion of the suite(s).
|
||||
INCLUDE_WITH_ANY_TAGS = None
|
||||
|
@ -302,9 +302,7 @@ def get_suites(values, args):
|
||||
# Do not change the execution order of the jstests passed as args, unless a tag option is
|
||||
# specified. If an option is specified, then sort the tests for consistent execution order.
|
||||
_config.ORDER_TESTS_BY_NAME = any(tag_filter is not None for
|
||||
tag_filter in (_config.EXCLUDE_WITH_ALL_TAGS,
|
||||
_config.EXCLUDE_WITH_ANY_TAGS,
|
||||
_config.INCLUDE_WITH_ALL_TAGS,
|
||||
tag_filter in (_config.EXCLUDE_WITH_ANY_TAGS,
|
||||
_config.INCLUDE_WITH_ANY_TAGS))
|
||||
# No specified config, just use the following, and default the logging and executor.
|
||||
suite_config = _make_jstests_config(args)
|
||||
|
Loading…
Reference in New Issue
Block a user