From 6980d5e5d07a397ecd6ec167161a348c81ed2859 Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Fri, 29 Jul 2022 13:35:58 +0200 Subject: [PATCH] [autotest] use coverage3 explicitly? --- .github/workflows/autotest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/autotest.yml b/.github/workflows/autotest.yml index 14c6142..330b9bf 100644 --- a/.github/workflows/autotest.yml +++ b/.github/workflows/autotest.yml @@ -37,9 +37,9 @@ jobs: ./cc-test-reporter before-build - name: Run tests run: | - RESULT=coverage run --source=. -m pytest tests -v + RESULT=coverage3 run --source=. -m pytest tests -v - name: Report coverage uses: paambaati/codeclimate-action@v3.0.0 with: - coverageCommand: coverage xml + coverageCommand: coverage3 xml debug: true