From d5f71bb0797370e0866b6a807330514611b31d96 Mon Sep 17 00:00:00 2001 From: daklauss Date: Tue, 6 May 2025 14:22:01 +0200 Subject: [PATCH] Chore: add dependency group --- .github/workflows/pipeline.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 061027a..235a368 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -71,7 +71,7 @@ jobs: - name: Test with pytest run: | - conda run pip install .[testing] + conda run pip install . --group testing conda install -c conda-forge cadet>=5.0.3 pytest tests --rootdir=tests -m "not slow and not local" diff --git a/pyproject.toml b/pyproject.toml index 9419c06..134ba1f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ dependencies = [ "filelock", ] -[project.optional-dependencies] +[dependency-groups] testing = [ "pytest", "joblib"