Skip to content

CI uses pip install while Makefile uses uv sync #579

Description

@gkorland

Description

There is an inconsistency between CI and local development tooling:

CI workflows use pip:

  • .github/workflows/nextjs.yml: pip install -e ".[test]"
  • .github/workflows/playwright.yml: pip install -e .

Makefile uses uv:

  • make install: uv sync --all-extras
  • make test: uv run python -m pytest
  • make run-dev: uv run flask ...

This can lead to different dependency resolutions and hard-to-reproduce CI failures.

Suggested Fix

Align CI workflows with the Makefile by using uv in CI:

- run: pip install uv
- run: uv sync --all-extras

Context

Found during code review of PR #522.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Labels

bugSomething isn't working

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions