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 $?