Skip to content

Commit

Permalink
loader: dont fail if no tests are discovered
Browse files Browse the repository at this point in the history
  • Loading branch information
gousteris committed Oct 17, 2024
1 parent 482b3f6 commit 557c406
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ducktape/command_line/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def main():

# Discover and load tests to be run
loader = TestLoader(session_context, session_logger, repeat=args_dict["repeat"], injected_args=injected_args,
subset=args_dict["subset"], subsets=args_dict["subsets"])
subset=args_dict["subset"], subsets=args_dict["subsets"], allow_empty_tests_list=args_dict["allow_empty_tests_list"])
try:
tests = loader.load(args_dict["test_path"], excluded_test_symbols=args_dict['exclude'])
except LoaderException as e:
Expand Down
2 changes: 2 additions & 0 deletions ducktape/command_line/parse_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ def create_ducktape_parser():
"to determine flakyness. When not present, deflake will not be used, "
"and a test will be marked as either passed or failed. "
"When enabled tests will be marked as flaky if it passes on any of the reruns")
parser.add_argument("--allow-empty-tests-list", action="store_true",
help="Proceeds without failing when no tests are loaded ")
return parser


Expand Down
7 changes: 5 additions & 2 deletions ducktape/tests/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class TestLoader(object):
"""Class used to discover and load tests."""

def __init__(self, session_context, logger, repeat=1, injected_args=None, cluster=None, subset=0, subsets=1,
historical_report=None):
historical_report=None, allow_empty_tests_list=False):
self.session_context = session_context
self.cluster = cluster
assert logger is not None
Expand All @@ -74,6 +74,7 @@ def __init__(self, session_context, logger, repeat=1, injected_args=None, cluste
# A non-None value here means the loader will override the injected_args
# in any discovered test, whether or not it is parametrized
self.injected_args = injected_args
self.allow_empty_tests_list = allow_empty_tests_list

def load(self, symbols, excluded_test_symbols=None):
"""
Expand Down Expand Up @@ -146,7 +147,9 @@ def load(self, symbols, excluded_test_symbols=None):
# Sort to make sure we get a consistent order for when we create subsets
all_test_context_list = sorted(all_test_context_list, key=attrgetter("test_id"))
if not all_test_context_list:
raise LoaderException("No tests to run!")
if not self.allow_empty_tests_list:
raise LoaderException()
self.logger.warn("No tests to run!")
self.logger.debug("Discovered these tests: " + str(all_test_context_list))
# Select the subset of tests.
if self.historical_report:
Expand Down
7 changes: 7 additions & 0 deletions tests/loader/check_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,13 @@ def check_test_loader_raises_on_params_not_found(self):
with pytest.raises(LoaderException, match='No tests to run'):
loader.load(included)

def check_test_loader_allow_empty_tests_list(self):
loader = TestLoader(self.SESSION_CONTEXT, logger=Mock(), allow_empty_tests_list=True)
# parameter syntax is valid, but there is no such parameter defined in the test annotation in the code
included = [os.path.join(discover_dir(), 'test_decorated.py::TestMatrix.test_thing@{"x": 1,"y": "missing"}')]
with pytest.raises(LoaderException, match='No tests to run'):
loader.load(included)

@pytest.mark.parametrize("symbol", [
# no class
'test_decorated.py::.test_thing'
Expand Down

0 comments on commit 557c406

Please sign in to comment.