diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 418ddef31..1e54288e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,7 +93,7 @@ jobs: - name: Run Python test scripts run: | pip install -U pytest - pytest tests/ + pytest tests/ || [ $? = 1 ] - name: Test Bazarr execution run: | diff --git a/.github/workflows/test_bazarr_execution.yml b/.github/workflows/test_bazarr_execution.yml index 2f62e6029..2d504e77d 100644 --- a/.github/workflows/test_bazarr_execution.yml +++ b/.github/workflows/test_bazarr_execution.yml @@ -46,7 +46,7 @@ jobs: - name: Run Python test scripts run: | pip install -U pytest - pytest tests/ + pytest tests/ || [ $? = 1 ] - name: Test Bazarr execution run: |