From 9ac9a5aeef26ed8dbb0eb97a67a2a4fa77c991d8 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 24 Oct 2024 23:11:05 +0200 Subject: [PATCH] Speed up process with uv --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f7f9982ac..3968ba1e4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,7 +58,7 @@ jobs: - name: Install system dependencies run: sudo apt update && sudo apt install -y gettext - name: Install Python dependencies - run: pip3 install --ignore-requires-python -e ".[dev]" psycopg2-binary # We ignore that flake8 needs newer python as we don't run flake8 during tests + run: pip3 install uv && uv pip install -e ".[dev]" psycopg2-binary - name: Run checks run: python manage.py check working-directory: ./src