From b7c8a6ab95c1a9b596d3d9e76b5e980c9ca615f4 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Thu, 9 Jan 2025 09:59:08 +0100 Subject: [PATCH] [CI] Install uv into system env --- .github/workflows/pytest.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index cff13c31..ff5d8223 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -35,10 +35,10 @@ jobs: - name: Install run: | - uv pip install wheel - uv pip install . - uv pip install pytest pytest-cov pytest-benchmark hypothesis - uv pip freeze + uv pip install wheel --system + uv pip install . --system + uv pip install pytest pytest-cov pytest-benchmark hypothesis --system + uv pip freeze --system - name: Run tests run: pytest --cov=pyerrors -vv