~singpolyma/biboumi

b82a14f20effad351cd2b1f344d526202ef11caf — louiz’ 6 years ago ccb4ee0
Fix the display of the number of checks to be run by the e2e tests
1 files changed, 2 insertions(+), 1 deletions(-)

M tests/end_to_end/__main__.py
M tests/end_to_end/__main__.py => tests/end_to_end/__main__.py +2 -1
@@ 2359,7 2359,8 @@ if __name__ == '__main__':
        if b"now running in foreground mode" in res:
            break
    print("irc server started.")
    print("Running %s checks for biboumi." % (len([s for s in scenarios if s.name in scenar_list])))
    checks = len([s for s in scenarios if s.name in scenar_list]) if scenar_list else len(scenarios)
    print("Running %s checks for biboumi." % checks)

    for s in scenarios:
        if scenar_list and s.name not in scenar_list: