diff --git a/pyproject.toml b/pyproject.toml index 077dc912..b8b27840 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"] @@ -134,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"