diff options
author | louiz’ <louiz@louiz.org> | 2016-10-31 01:45:09 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-10-31 01:45:09 +0100 |
commit | 056bc3da066bbf0345db27ac41bca0433ba4db0b (patch) | |
tree | 8e7e93431146b5d297404ad464b1ca7e564fc6f5 | |
parent | db7ac6f13d4cb1f280afcfed7c17533244a1d010 (diff) | |
download | biboumi-056bc3da066bbf0345db27ac41bca0433ba4db0b.tar.gz biboumi-056bc3da066bbf0345db27ac41bca0433ba4db0b.tar.bz2 biboumi-056bc3da066bbf0345db27ac41bca0433ba4db0b.tar.xz biboumi-056bc3da066bbf0345db27ac41bca0433ba4db0b.zip |
Actually run all the e2e scenario if nothing is specified
-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 d618fda..e2a497d 100644 --- a/tests/end_to_end/__main__.py +++ b/tests/end_to_end/__main__.py @@ -1677,7 +1677,7 @@ if __name__ == '__main__': print("Running %s checks for biboumi." % (len(scenarios))) for s in scenarios: - if s.name not in scenar_list: + if scenar_list and s.name not in scenar_list: continue test = BiboumiTest(s) if not test.run(): |