From 3c56a3d21d6746b4eff17595340c3518c984fca6 Mon Sep 17 00:00:00 2001 From: czoido Date: Tue, 24 Sep 2024 15:35:41 +0200 Subject: [PATCH] show skip --- .github/workflows/linux-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux-tests.yml b/.github/workflows/linux-tests.yml index 5461e4d16b6..2c081c37414 100644 --- a/.github/workflows/linux-tests.yml +++ b/.github/workflows/linux-tests.yml @@ -89,9 +89,9 @@ jobs: shell: bash run: | if [ "${{ matrix.test-type }}" == "unittests" ]; then - pytest test/unittests --durations=20 -n 4 + pytest test/unittests --durations=20 -n 4 -rs elif [ "${{ matrix.test-type }}" == "integration" ]; then - pytest test/integration --durations=20 -n 4 + pytest test/integration --durations=20 -n 4 -rs elif [ "${{ matrix.test-type }}" == "functional" ]; then - pytest test/functional --durations=20 -n 4 + pytest test/functional --durations=20 -n 4 -rs fi