From 793eadf7a6d176f2e2adc9af6b408e58c17c29da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=BDiga=20Luk=C5=A1i=C4=8D?= <31988337+zigaLuksic@users.noreply.github.com> Date: Wed, 16 Aug 2023 14:55:46 +0200 Subject: [PATCH] Fix codecov (#714) * adjust codecov command and enable push for branch * remove special status of branch --- .github/workflows/ci_action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_action.yml b/.github/workflows/ci_action.yml index c348e043..5ebbe91d 100644 --- a/.github/workflows/ci_action.yml +++ b/.github/workflows/ci_action.yml @@ -95,7 +95,7 @@ jobs: --sh_client_id "${{ secrets.SH_CLIENT_ID }}" \ --sh_client_secret "${{ secrets.SH_CLIENT_SECRET }}" if [ ${{ github.event_name }} == 'push' ]; then - pytest -m "not geopedia" --cov --cov-report=term --cov-report=xml + pytest -m "not geopedia" --cov=eolearn --cov-report=term --cov-report=xml else pytest -m "not geopedia" fi