From fc6227d5db9aa9b9ad0db9b5e5e801b7899e85cc Mon Sep 17 00:00:00 2001 From: remsky Date: Mon, 13 Jan 2025 20:23:14 -0700 Subject: [PATCH] ci: use --system flag for ruff and pytest commands in CI workflow --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47183d3..6de0e1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,8 +36,8 @@ jobs: - name: Lint with ruff run: | - uv run ruff check . + uv run --system ruff check . - name: Test API and UI run: | - uv run pytest api/tests/ ui/tests/ --asyncio-mode=auto --cov=api --cov=ui --cov-report=term-missing + uv run --system pytest api/tests/ ui/tests/ --asyncio-mode=auto --cov=api --cov=ui --cov-report=term-missing