From dc5dbea4c9fa67dbc1ee2b934dcc11f6eae3f6a5 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sat, 14 Mar 2020 17:21:22 +0000 Subject: [PATCH] See stdout during tests to debug circleCI --- 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 bee65de4..53950f01 100755 --- a/bin/run_test.py +++ b/bin/run_test.py @@ -9,7 +9,7 @@ import sys def single_run(test_project): # run the test subprocess.check_call( - [sys.executable, '-m', 'pytest', '-vv', os.path.join(test_project, 'cibuildwheel_test.py')], + [sys.executable, '-m', 'pytest', '-vvs', os.path.join(test_project, 'cibuildwheel_test.py')], )