Remove coverage reporting from external CI files
All checks were successful
CI / lint (push) Successful in 15s
CI / test (push) Successful in 8s
CI / deploy (push) Successful in 31s

- Removes coverage reporting from both CI files.
- Simplifies the test execution process.
- Reduces build time and complexity.
This commit is contained in:
Roger Gonzalez 2025-05-17 14:18:40 -03:00
parent f940b7a8ad
commit 201690881e
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ jobs:
run: |
uv venv .venv
source .venv/bin/activate
uv run pytest -v --cov=. --cov-report=xml
uv run pytest
deploy:
runs-on: ubuntu-latest

View File

@ -15,7 +15,7 @@ lint:
test:
stage: test
script:
- uv run pytest -v --cov=. --cov-report=xml
- uv run pytest
deploy_to_gitlab:
stage: deploy