From 7d099660be4570522dbf5fe5a50489ed97ebfaee Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Thu, 31 Oct 2024 15:09:44 +0000 Subject: [PATCH] Provide token to upload coverage data to codecov --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8f282967..eec1103f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,6 +39,8 @@ jobs: run: tox - name: Codecov upload + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} run: codecov test-py36: @@ -63,6 +65,8 @@ jobs: run: tox - name: Codecov upload + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} run: codecov