From b1afa44116779b62fe1167e466c23ccef4fa900c Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Tue, 22 Jul 2025 10:51:14 -0400 Subject: [PATCH 1/2] Delete default groups Fixes #190 --- pyproject.toml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 077dc912..26f9727e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,20 +71,6 @@ cloud-export-to-parquet = [ "pyarrow>=19.0.1", ] -[tool.uv] -default-groups = [ - "dev", - "bedrock", - "dsl", - "encryption", - "gevent", - "langchain", - "nexus", - "open-telemetry", - "pydantic-converter", - "sentry", - "trio-async", -] [tool.hatch.build.targets.sdist] include = ["./**/*.py"] From 1f3a05b61e4590812403f47cee23882221ea96c9 Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Tue, 22 Jul 2025 10:59:26 -0400 Subject: [PATCH 2/2] Install all groups in tests --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 26f9727e..b8b27840 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -120,8 +120,8 @@ build-backend = "hatchling.build" [tool.poe.tasks] format = [{cmd = "uv run black ."}, {cmd = "uv run isort ."}] lint = [{cmd = "uv run black --check ."}, {cmd = "uv run isort --check-only ."}, {ref = "lint-types" }] -lint-types = "uv run mypy --check-untyped-defs --namespace-packages ." -test = "uv run pytest" +lint-types = "uv run --all-groups mypy --check-untyped-defs --namespace-packages ." +test = "uv run --all-groups pytest" [tool.pytest.ini_options] asyncio_mode = "auto"