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