From 1a7718605239b5b8d0919d5d375341cfe8eed1b1 Mon Sep 17 00:00:00 2001 From: Arpan Mahanty Date: Sun, 17 Mar 2024 00:57:46 +0530 Subject: [PATCH] Updated sanity-suite.yml --- .github/workflows/sanity-suite.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/sanity-suite.yml b/.github/workflows/sanity-suite.yml index f89ee15..fee0a08 100644 --- a/.github/workflows/sanity-suite.yml +++ b/.github/workflows/sanity-suite.yml @@ -25,6 +25,11 @@ jobs: with: python-version: 3.11 + - name: Setup Code Climate Test Reporter + run: | + curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter + chmod +x ./cc-test-reporter + - name: Install required dependencies run: | python -m pip install --upgrade poetry @@ -32,4 +37,6 @@ jobs: - name: Perform Sanity Tests run: | + ./cc-test-reporter before-build poetry run pytest + ./cc-test-reporter after-build --coverage-input-type clover --exit-code $?