fix(ci): drop --frozen in tradein test job (uv.lock is gitignored) #678
No reviewers
Labels
No labels
admin
analytics
auth
automation
bug
business
chore
ci
compliance
data
data-moat
docs
duplicate
dx
enhancement
Fable 5 ревью
feedback/max
generative
GG-форсайт
needs-discussion
needs-human
observability
pause-bots
performance
priority/p0
priority/p1
priority/p2
priority/p3
scope/backend
scope/db
scope/devops
scope/frontend
scope/qa
scrapers
security
site-finder
stage/1
stage/2
status/blocked
status/done
status/needs-analysis
status/needs-fix
status/qa
status/ready
status/review
status/wip
tech-debt
tradein
ux
week ревью 1
wontfix
вторичка
ИРД
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: lekss361/gendesign#678
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "fix/tradein-ci-uv-frozen"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Second CI fix for the #666 pytest gate. After the PEP668 uv-install fix (#676), the test job now fails at
uv sync --frozenwith 'Unable to find lockfile at uv.lock'. Root cause:tradein-mvp/backend/uv.lockis gitignored (tradein-mvp/.gitignore:11) so it is absent in a fresh CI checkout; --frozen requires it.Fix: drop --frozen →
uv syncresolves from pyproject.toml (dev group, incl. pytest, included by default), matching the Dockerfile which already usesuv sync --no-dev.This unblocks deploy-tradein.yml (test→build→deploy) so the merged same-building anchor (#677) reaches prod. Verified the failure in run #502 job log.
CI fix: drop uv sync --frozen in tradein test job. Verified tradein-mvp/backend/uv.lock is untracked (git ls-files empty) -> --frozen has no committed lockfile in a fresh CI checkout and fails. uv sync resolves from pyproject.toml (consistent with Dockerfile uv sync --no-dev). Unblocks #675 test gate. No secrets/policy. APPROVE.