ci(): fixed artifacts path and uv job image

This commit is contained in:
ITQ
2026-02-24 07:39:03 +03:00
parent de4558ce79
commit cd0bcbe99e
+4 -5
View File
@@ -161,7 +161,7 @@ cache:
allow_failure: true allow_failure: true
.uv-job: &uv-job .uv-job: &uv-job
image: debian:trixie-slim image: docker.io/python:3.13-trixie-slim
cache: cache:
key: "${CI_JOB_NAME}-${CI_COMMIT_REF_SLUG}" key: "${CI_JOB_NAME}-${CI_COMMIT_REF_SLUG}"
paths: paths:
@@ -218,13 +218,12 @@ test:
- just ci-test - just ci-test
artifacts: artifacts:
paths: paths:
- reports/ - src/backend/.cov/
- .cov/
reports: reports:
junit: reports/junit.xml junit: src/backend/.cov/junit.xml
coverage_report: coverage_report:
coverage_format: cobertura coverage_format: cobertura
path: .cov/coverage.xml path: src/backend/.cov/coverage.xml
expire_in: 1 week expire_in: 1 week
when: always when: always
coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/' coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/'