From bab8b6668e680f2bc3fc4082433c0ac0f661b2ef Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Tue, 23 Apr 2019 22:17:25 +0100 Subject: [PATCH] Full error output during pytest fails --- bin/run_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/run_test.py b/bin/run_test.py index 801aed0e..b9abde02 100755 --- a/bin/run_test.py +++ b/bin/run_test.py @@ -17,7 +17,7 @@ def single_run(test_project): # run the test subprocess.check_call( - [sys.executable, '-m', 'pytest', '-v', os.path.join(test_project, 'cibuildwheel_test.py')], + [sys.executable, '-m', 'pytest', '-vv', os.path.join(test_project, 'cibuildwheel_test.py')], env=env, )