From b379ab0b8ffa1d265435bcd01110f2bead591b24 Mon Sep 17 00:00:00 2001 From: Cyrille Derche Date: Fri, 13 Sep 2024 21:20:16 +0200 Subject: [PATCH] test --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e8c685..a525784 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,11 +36,13 @@ jobs: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test + run: coverage lcov app/*.py - uses: paambaati/codeclimate-action@v9.0.0 env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} with: - coverageCommand: coverage lcov app/*.py # lcov -o coverage.lcov # run -m pytest app + coverageCommand: coverage report # lcov -o coverage.lcov # run -m pytest app coverageLocations: ${{github.workspace}}/*.lcov:lcov build-push: