From a9a78754ebaf74a4c7327b8ad8afa152823a464f Mon Sep 17 00:00:00 2001 From: saattrupdan Date: Tue, 26 Nov 2024 10:27:05 +0100 Subject: [PATCH] fix: Install dev deps in Github workflow --- {{cookiecutter.project_name}}/.github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_name}}/.github/workflows/ci.yaml b/{{cookiecutter.project_name}}/.github/workflows/ci.yaml index 123548d..cea2c24 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/ci.yaml +++ b/{{cookiecutter.project_name}}/.github/workflows/ci.yaml @@ -47,7 +47,7 @@ jobs: run: uv python install {% raw %}${{ matrix.python-version }}{% endraw %} - name: Install Dependencies - run: uv sync --all-extras --no-dev + run: uv sync --all-extras - name: Test with pytest run: uv run pytest