File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -96,16 +96,14 @@ def main():
96
96
bots_to_test = {bot for bot in specified_bots if bot not in options .exclude }
97
97
98
98
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 )
101
99
pytest_options = [
102
100
"-s" , # show output from tests; this hides the progress bar though
103
101
"-x" , # stop on first test failure
104
102
"--ff" , # runs last failure first
105
103
]
106
104
pytest_options += ["-v" ] if options .verbose else []
107
105
os .chdir (bots_dir )
108
- result = pytest .main (pytest_bots_to_test + pytest_options )
106
+ result = pytest .main (sorted ( bots_to_test ) + pytest_options )
109
107
if result != 0 :
110
108
sys .exit (1 )
111
109
failures = False
You can’t perform that action at this time.
0 commit comments