Skip to content

Commit 52ca148

Browse files
committed
update
1 parent 3bb179d commit 52ca148

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/api-tests-on-uv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: uv lock --project api --check
4848

4949
- name: Install dependencies
50-
run: uv sync --project api --all-groups
50+
run: uv sync --project api --group dev
5151

5252
# - name: Check dependencies in pyproject.toml
5353
# run: poetry run -P api bash dev/pytest/pytest_artifacts.sh

.github/workflows/vdb-tests-on-uv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: uv lock --project api --check
4646

4747
- name: Install dependencies
48-
run: uv sync --project api --all-groups
48+
run: uv sync --project api
4949

5050
- name: Set up dotenvs
5151
run: |

api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN apt-get update \
2222

2323
# Install Python dependencies
2424
COPY pyproject.toml uv.lock ./
25-
RUN uv sync --locked --all-groups
25+
RUN uv sync --locked
2626

2727
# production stage
2828
FROM base AS production

api/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,9 @@ optional = true
235235
dotenv-linter = "~0.5.0"
236236
ruff = "~0.11.0"
237237

238+
[tool.uv]
239+
default-groups = ["storage", "tools", "vdb"]
240+
238241
[dependency-groups]
239242
dev = [
240243
"coverage~=7.2.4",

0 commit comments

Comments
 (0)