From d627c6f26836f290f4e6e3062f9410d6b3b69b75 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Tue, 7 Jul 2020 14:08:37 -0700 Subject: [PATCH] Temporarily disable allowing codecov to fail CI (#1839) * add verbose flag to codecov upload * temporarily disable codecov failure resulting in CI failure until bug in codecov is fixed old-commit-hash: 37d6edf4dfb8d28095c0efb366c5b7f671880757 --- .github/workflows/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4f6bb66d02..fc851e62ac 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -125,7 +125,7 @@ jobs: - name: Upload coverage to Codecov run: | docker commit tmppilot tmppilotci - $CI_RUN "cd /tmp/openpilot && bash <(curl -s https://codecov.io/bash) -Z -F unit_tests" + $CI_RUN "cd /tmp/openpilot && bash <(curl -s https://codecov.io/bash) -v -F unit_tests" process_replay: name: process replay @@ -145,7 +145,7 @@ jobs: - name: Upload coverage to Codecov run: | docker commit tmppilot tmppilotci - $CI_RUN "cd /tmp/openpilot && bash <(curl -s https://codecov.io/bash) -Z -F process_replay" + $CI_RUN "cd /tmp/openpilot && bash <(curl -s https://codecov.io/bash) -v -F process_replay" - name: Print diff if: always() run: | @@ -205,4 +205,4 @@ jobs: - name: Upload coverage to Codecov run: | docker commit tmppilot tmppilotci - $CI_RUN "cd /tmp/openpilot && bash <(curl -s https://codecov.io/bash) -Z -F test_car_models" + $CI_RUN "cd /tmp/openpilot && bash <(curl -s https://codecov.io/bash) -v -F test_car_models"