Skip to content

Commit 147e9f6

Browse files
committed
test-bots: Remove merels exclusion.
This test was fixed in commit ab97b37 (#448). Signed-off-by: Anders Kaseorg <[email protected]>
1 parent 53e59c8 commit 147e9f6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tools/test-bots

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,16 +96,14 @@ def main():
9696
bots_to_test = {bot for bot in specified_bots if bot not in options.exclude}
9797

9898
if options.pytest:
99-
excluded_bots = ["merels"]
100-
pytest_bots_to_test = sorted(bot for bot in bots_to_test if bot not in excluded_bots)
10199
pytest_options = [
102100
"-s", # show output from tests; this hides the progress bar though
103101
"-x", # stop on first test failure
104102
"--ff", # runs last failure first
105103
]
106104
pytest_options += ["-v"] if options.verbose else []
107105
os.chdir(bots_dir)
108-
result = pytest.main(pytest_bots_to_test + pytest_options)
106+
result = pytest.main(sorted(bots_to_test) + pytest_options)
109107
if result != 0:
110108
sys.exit(1)
111109
failures = False

0 commit comments

Comments
 (0)