diff options
author | louiz’ <louiz@louiz.org> | 2017-03-28 10:17:33 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2017-03-28 10:17:33 +0200 |
commit | 07c8567b9fa4c857b4aa4ba5f0eda2b565fe2a34 (patch) | |
tree | 567b883c04f247099241b3c9d54e5dd2ed8164e2 | |
parent | c026f41eeb9a68da04acaaf1d750b26207843161 (diff) | |
download | biboumi-07c8567b9fa4c857b4aa4ba5f0eda2b565fe2a34.tar.gz biboumi-07c8567b9fa4c857b4aa4ba5f0eda2b565fe2a34.tar.bz2 biboumi-07c8567b9fa4c857b4aa4ba5f0eda2b565fe2a34.tar.xz biboumi-07c8567b9fa4c857b4aa4ba5f0eda2b565fe2a34.zip |
e2e: Display the correct number of tests that will run
-rw-r--r-- | tests/end_to_end/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/end_to_end/__main__.py b/tests/end_to_end/__main__.py index c86ab29..f24df2e 100644 --- a/tests/end_to_end/__main__.py +++ b/tests/end_to_end/__main__.py @@ -2257,7 +2257,7 @@ if __name__ == '__main__': if b"now running in foreground mode" in res: break print("irc server started.") - print("Running %s checks for biboumi." % (len(scenarios))) + print("Running %s checks for biboumi." % (len([s for s in scenarios if s.name in scenar_list]))) for s in scenarios: if scenar_list and s.name not in scenar_list: |