From d70aee8b1040e9dc48bd3129ef224cb612578f1b Mon Sep 17 00:00:00 2001 From: unai_71 Date: Sun, 1 Feb 2026 19:57:56 +0100 Subject: [PATCH] Fixed pytest coverage report project name bug --- .gitea/workflows/ci.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 0c6e37a..12c4c20 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -2,7 +2,7 @@ name: CI/CD Pipeline on: push: - branches: [main] + branches: ['**'] tags: ['v*'] pull_request: @@ -27,8 +27,7 @@ jobs: run: poetry run ruff check . - name: Run Tests with Coverage - run: poetry run pytest --cov=my_project --cov-report=term-missing --cov-fail-under=80 - + run: poetry run pytest --cov --cov-report=term-missing --cov-fail-under=80 publish-container: needs: test-and-lint if: startsWith(github.ref, 'refs/tags/v')