From e2782472636a872ce689bc465870f450be20addf Mon Sep 17 00:00:00 2001 From: Kyle Gottfried <6462596+Spitfire1900@users.noreply.github.com> Date: Tue, 31 Dec 2024 19:38:41 -0500 Subject: [PATCH] in github action `pytest --capture=no` --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 545488c..5ce7013 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,4 +28,4 @@ jobs: - name: Run tests run: | xonsh -c "xontrib load pygitstatus" - bash -c "set -o pipefail && pytest --collect-only --quiet | grep --invert-match 'tests collected' | xargs --replace='%0' --max-procs=1 --max-args=1 sh -c 'pytest %0 || exit 255'" + bash -c "set -o pipefail && pytest --collect-only --quiet | grep --invert-match 'tests collected' | xargs --replace='%0' --max-procs=1 --max-args=1 sh -c 'pytest --capture=no %0 || exit 255'"