diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index fa98fdb3cb..fe5011870c 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -52,7 +52,7 @@ jobs: if: ${{ always() }} run: | source .venv/bin/activate - cd src && pytest -n auto -m "not ciSkip" + cd src && pytest -n auto -m "not ciSkip" -rs -v - name: Run C/C++ Tests if: ${{ always() }} working-directory: ./dist3 @@ -85,7 +85,7 @@ jobs: - name: "Run Python Tests" run: | source .venv/bin/activate - cd src && pytest -n auto -m "not ciSkip" + cd src && pytest -n auto -m "not ciSkip" -rs -v - name: "Run C/C++ Tests" working-directory: ./dist3 @@ -121,7 +121,7 @@ jobs: - name: "Run Python Tests" run: | source .venv/bin/activate - cd src && pytest -n auto -m "not ciSkip" + cd src && pytest -n auto -m "not ciSkip" -rs -v - name: "Run C/C++ Tests" working-directory: ./dist3 @@ -156,7 +156,7 @@ jobs: - name: "Run Python Tests" run: | source .venv/bin/activate - cd src && pytest -n auto -m "not ciSkip" + cd src && pytest -n auto -m "not ciSkip" -rs -v build-windows: @@ -206,7 +206,7 @@ jobs: Set-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name MPLBACKEND -Value ${MPLBACKEND} venv\Scripts\activate cd src - pytest -n auto -m "not ciSkip" + pytest -n auto -m "not ciSkip" -rs -v if(($LastExitCode -ne 0) -and ($LastExitCode -ne 5)) {exit 1} - name: "C/C++ Tests" if: ${{ always() }} @@ -249,7 +249,7 @@ jobs: run: | source .venv/bin/activate cd src - pytest -n auto -m "not ciSkip" + pytest -n auto -m "not ciSkip" -rs -v if: ${{ always() }} - name: "Run C/C++ Tests" working-directory: ./dist3 @@ -295,6 +295,6 @@ jobs: run: | source .venv/bin/activate cd src - pytest -n auto -m "not ciSkip" + pytest -n auto -m "not ciSkip" -rs -v if: ${{ always() }}