From b1622f5e9c360fd6b54dadaf394178cba4ccc2a6 Mon Sep 17 00:00:00 2001 From: Daniel McCloy Date: Thu, 14 Mar 2024 09:53:13 -0500 Subject: [PATCH 1/3] see if this fixes codecov --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4c7276515..cb9da2820 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -96,8 +96,10 @@ jobs: if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest' && matrix.sphinx-version == 'dev' uses: codecov/codecov-action@v4 with: - token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true + verbose: true + env: + token: ${{ secrets.CODECOV_TOKEN }} # note I am setting this on top of the Python cache as I could not find # how to set the hash key on the python one From 50de0f19135aa452dd091ba89b3dfbd30cbb5595 Mon Sep 17 00:00:00 2001 From: Daniel McCloy Date: Fri, 15 Mar 2024 15:01:28 -0500 Subject: [PATCH 2/3] Update .github/workflows/tests.yml Co-authored-by: gabalafou --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cb9da2820..4db86867f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -99,7 +99,7 @@ jobs: fail_ci_if_error: true verbose: true env: - token: ${{ secrets.CODECOV_TOKEN }} + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # note I am setting this on top of the Python cache as I could not find # how to set the hash key on the python one From b7f745770ad86571ea870be9d8064cc4e8ffa714 Mon Sep 17 00:00:00 2001 From: Daniel McCloy Date: Fri, 15 Mar 2024 16:00:38 -0500 Subject: [PATCH 3/3] Update .github/workflows/tests.yml [ci skip] --- .github/workflows/tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4db86867f..6a7ca6164 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -97,7 +97,6 @@ jobs: uses: codecov/codecov-action@v4 with: fail_ci_if_error: true - verbose: true env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}