From 147e9f6b8101d67cd3d66f7aa2d353b95550b758 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Tue, 24 Aug 2021 13:32:57 -0700 Subject: [PATCH] test-bots: Remove merels exclusion. This test was fixed in commit ab97b37ce1d3075ed8fb9971abe776b7592297dc (#448). Signed-off-by: Anders Kaseorg --- tools/test-bots | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/test-bots b/tools/test-bots index cad9c51..d890c78 100755 --- a/tools/test-bots +++ b/tools/test-bots @@ -96,8 +96,6 @@ def main(): bots_to_test = {bot for bot in specified_bots if bot not in options.exclude} if options.pytest: - excluded_bots = ["merels"] - pytest_bots_to_test = sorted(bot for bot in bots_to_test if bot not in excluded_bots) pytest_options = [ "-s", # show output from tests; this hides the progress bar though "-x", # stop on first test failure @@ -105,7 +103,7 @@ def main(): ] pytest_options += ["-v"] if options.verbose else [] os.chdir(bots_dir) - result = pytest.main(pytest_bots_to_test + pytest_options) + result = pytest.main(sorted(bots_to_test) + pytest_options) if result != 0: sys.exit(1) failures = False