From f03266af6044dfc31d9aa24894468c0fdea80cad Mon Sep 17 00:00:00 2001 From: "Vadim A. Potemkin" Date: Tue, 28 May 2024 16:08:16 +0300 Subject: [PATCH] Update unit-build.yml Your unit-test coverage report stops uploading about 2 month ago (just like with Fedot.Industrial). It is almost invisible issue, because it doesn't invoke any exception during execution. But it could be found in action logs if you unfold `Codecove-coverage`: Error: Codecov token not found. Please provide Codecov token with -t flag. Warning: Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1 --- .github/workflows/unit-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/unit-build.yml b/.github/workflows/unit-build.yml index b9ec05e1fd..1f58fea64f 100644 --- a/.github/workflows/unit-build.yml +++ b/.github/workflows/unit-build.yml @@ -37,3 +37,5 @@ jobs: pytest --cov=fedot -s test/unit - name: Codecov-coverage uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }}