From 01eece5b44b0e89772259803fe62927c661eae08 Mon Sep 17 00:00:00 2001 From: MaxymVlasov Date: Fri, 21 Mar 2025 18:44:20 +0200 Subject: [PATCH 1/3] chore(codecov): Ignore errors during codecov upload --- .github/workflows/reusable-tox.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/reusable-tox.yml b/.github/workflows/reusable-tox.yml index 39e1c4869..fe92c347b 100644 --- a/.github/workflows/reusable-tox.yml +++ b/.github/workflows/reusable-tox.yml @@ -419,3 +419,6 @@ jobs: steps.python-install.outputs.python-version }} token: ${{ secrets.codecov-token }} + # There is a bug in action which provokes it to fail during upload + # Related issue: https://github.com/codecov/codecov-action/issues/1794 + continue-on-error: true From f7119e084d3803983acc8979ff9243f75cf1a474 Mon Sep 17 00:00:00 2001 From: MaxymVlasov Date: Fri, 21 Mar 2025 18:48:41 +0200 Subject: [PATCH 2/3] f --- .github/workflows/reusable-tox.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reusable-tox.yml b/.github/workflows/reusable-tox.yml index fe92c347b..54423517f 100644 --- a/.github/workflows/reusable-tox.yml +++ b/.github/workflows/reusable-tox.yml @@ -400,6 +400,9 @@ jobs: !cancelled() && steps.tox-run.outputs.test-result-files != '' uses: codecov/test-results-action@44ecb3a270cd942bdf0fa8f2ce14cb32493e810a # v1.0.3 + # There is a bug in action which provokes it to fail during upload + # Related issue: https://github.com/codecov/codecov-action/issues/1794 + continue-on-error: true with: disable_search: true fail_ci_if_error: >- @@ -419,6 +422,3 @@ jobs: steps.python-install.outputs.python-version }} token: ${{ secrets.codecov-token }} - # There is a bug in action which provokes it to fail during upload - # Related issue: https://github.com/codecov/codecov-action/issues/1794 - continue-on-error: true From a89c2c5e8062ea65ba0295461ed3d406ff881005 Mon Sep 17 00:00:00 2001 From: MaxymVlasov Date: Fri, 21 Mar 2025 19:50:48 +0200 Subject: [PATCH 3/3] Add FIXME comment --- .github/workflows/reusable-tox.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-tox.yml b/.github/workflows/reusable-tox.yml index 54423517f..b1292a3b1 100644 --- a/.github/workflows/reusable-tox.yml +++ b/.github/workflows/reusable-tox.yml @@ -400,7 +400,7 @@ jobs: !cancelled() && steps.tox-run.outputs.test-result-files != '' uses: codecov/test-results-action@44ecb3a270cd942bdf0fa8f2ce14cb32493e810a # v1.0.3 - # There is a bug in action which provokes it to fail during upload + # FIXME There is a bug in action which provokes it to fail during upload # Related issue: https://github.com/codecov/codecov-action/issues/1794 continue-on-error: true with: