diff --git a/tools/modules_testing_grid.py b/tools/modules_testing_grid.py index d363763e04cf482f9a3b92ccf6657ec027f778c6..270fecbb8e1ccf07d28e10d88ab31ae0bda639ab 100755 --- a/tools/modules_testing_grid.py +++ b/tools/modules_testing_grid.py @@ -23,10 +23,10 @@ def main(xunit, origin): modules = {} other_testcases = [] for tc in ts: - if not tc.classname.startswith("modules."): + if tc.classname.startswith("weboob."): other_testcases.append(repr(tc)) continue - module = tc.classname.split(".")[1] + module = tc.classname.split(".")[0] # In the following, we consider # bad > skipped > good # and only make update of a module status according to this order