From 921ddb64f041305df8e26666f1f19ff750028833 Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Fri, 29 Jul 2022 14:02:54 +0200 Subject: [PATCH] Revert "[autotest] remove code climate dependency" This reverts commit 61ebc3aea6919ccd32201f3c9ff5ec66e272128b. --- .github/workflows/autotest.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/autotest.yml b/.github/workflows/autotest.yml index ce0278a..49cbada 100644 --- a/.github/workflows/autotest.yml +++ b/.github/workflows/autotest.yml @@ -30,6 +30,11 @@ jobs: pip install -U coverage pytest pytest-mock freezegun pip install 'pygit2<1' 'libvirt-python<6.3' 'feedparser<6' || true pip install $(cat requirements/modules/*.txt | cut -d ' ' -f 1 | sort -u) + - name: Install Code Climate dependency + run: | + curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter + chmod +x ./cc-test-reporter + ./cc-test-reporter before-build - name: Run tests run: | coverage run --source=. -m pytest tests -v