From 104ffcf8a6940c52bb3df6f8378c1be0acb68483 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Sun, 17 Oct 2021 20:06:26 +0200 Subject: [PATCH] ci: pytest --capture=no for more logs --- .github/integration-test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/integration-test.py b/.github/integration-test.py index cbbffa5..7235e06 100755 --- a/.github/integration-test.py +++ b/.github/integration-test.py @@ -116,7 +116,7 @@ def run_test(image_name, test_name, bootstrap_pip_spec, test_files, upgrade, ins ) run_container_command( test_name, - '/opt/tljh/hub/bin/python3 -m pytest --verbose --maxfail=2 --color=yes {}'.format( + '/opt/tljh/hub/bin/python3 -m pytest --verbose --maxfail=2 --color=yes --capture=no {}'.format( ' '.join([os.path.join('/srv/src/integration-tests/', f) for f in test_files]) ) )