From 63eda18cf9581524d463bf71aeeb15fa5f67708c Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Mon, 1 Jun 2020 09:31:54 +0100 Subject: [PATCH] chore: increase test verbosity to capture errors Signed-off-by: heitorlessa --- bin/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/run_tests.py b/bin/run_tests.py index 93c23e88..2b28ec0c 100755 --- a/bin/run_tests.py +++ b/bin/run_tests.py @@ -12,4 +12,4 @@ if __name__ == '__main__': subprocess.check_call([sys.executable, '-m', 'pytest', 'unit_test']) # run the integration tests - subprocess.check_call([sys.executable, '-m', 'pytest', '-x', '--durations', '0', 'test']) + subprocess.check_call([sys.executable, '-m', 'pytest', '-x', '--durations', '0', 'test', '-vv'])