summaryrefslogtreecommitdiff
path: root/tests/end_to_end/__main__.py
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2016-06-29 19:52:43 +0200
committerlouiz’ <louiz@louiz.org>2016-06-29 19:53:37 +0200
commit79002aa5c9ada3a09d5f09cde0cac4c456adaa47 (patch)
treeba1a3736f07edde25ca3e974ece20c0bdfd2bd2b /tests/end_to_end/__main__.py
parent2fe8878169b094a12d74d69ea97314d172647ea8 (diff)
downloadbiboumi-79002aa5c9ada3a09d5f09cde0cac4c456adaa47.tar.gz
biboumi-79002aa5c9ada3a09d5f09cde0cac4c456adaa47.tar.bz2
biboumi-79002aa5c9ada3a09d5f09cde0cac4c456adaa47.tar.xz
biboumi-79002aa5c9ada3a09d5f09cde0cac4c456adaa47.zip
Run e2e through with valgrind if BIBOUMI_E2E_VALGRIND is set in the env
Diffstat (limited to 'tests/end_to_end/__main__.py')
-rw-r--r--tests/end_to_end/__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/end_to_end/__main__.py b/tests/end_to_end/__main__.py
index 06aa1ce..e6ed911 100644
--- a/tests/end_to_end/__main__.py
+++ b/tests/end_to_end/__main__.py
@@ -782,7 +782,7 @@ if __name__ == '__main__':
for scenario in scenarios:
test = BiboumiTest(scenario)
- if not test.run(False):
+ if not test.run(os.getenv("E2E_BIBOUMI_VALGRIND") is not None):
print("You can check the files slixmpp_%s_output.txt and biboumi_%s_output.txt to help you debug." %
(scenario.name, scenario.name))
failures += 1