From 236305729e0ebe7fa669d0cea343e8cd746381ec Mon Sep 17 00:00:00 2001 From: Fischer Moseley <42497969+fischermoseley@users.noreply.github.com> Date: Tue, 10 Sep 2024 15:21:41 -0600 Subject: [PATCH] ci: invoke codecov via Python, not from command line --- .github/workflows/run_tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 25ded24..57e334f 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -33,4 +33,5 @@ jobs: - name: Upload results to Codecov run: | - codecov -t ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + source venv/bin/activate + python3 -m codecov -t ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file