File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -342,8 +342,6 @@ RUN source /opt/dynamo/venv/bin/activate && \
342
342
uv build --wheel --out-dir /workspace/dist --python 3.10; \
343
343
fi && \
344
344
cd /workspace && \
345
- uv build --wheel --out-dir /workspace/dist && \
346
- cd /workspace/deploy/dynamo/api-store && \
347
345
uv build --wheel --out-dir /workspace/dist
348
346
349
347
#######################################
@@ -362,8 +360,7 @@ RUN mkdir -p /opt/dynamo/bindings/wheels && \
362
360
cp -r lib/bindings/c/include /opt/dynamo/bindings/.
363
361
364
362
RUN uv pip install /workspace/dist/ai_dynamo_runtime*cp312*.whl && \
365
- uv pip install /workspace/dist/ai_dynamo*any.whl && \
366
- uv pip install /workspace/dist/ai_dynamo_store*any.whl
363
+ uv pip install /workspace/dist/ai_dynamo*any.whl
367
364
368
365
##########################################
369
366
########## Perf Analyzer Image ###########
Original file line number Diff line number Diff line change @@ -122,6 +122,7 @@ tmp_path_retention_policy = "failed"
122
122
# NOTE
123
123
# We ignore model.py explcitly here to avoid mypy errors with duplicate modules
124
124
# pytest overrides the default mypy exclude configuration and so we exclude here as well
125
+ # Ignore mypy check for api-store component from Dynamo Deploy. Mypy analysis will fail since this package (and its dependencies) are not installed.
125
126
addopts = [
126
127
" -ra" ,
127
128
" --showlocals" ,
@@ -130,6 +131,7 @@ addopts = [
130
131
" --mypy" ,
131
132
" --ignore-glob=*model.py" ,
132
133
" --ignore-glob=*_inc.py" ,
134
+ " --ignore-glob=deploy/dynamo/api-store/*" ,
133
135
# FIXME: Get relative/generic blob paths to work here
134
136
]
135
137
xfail_strict = true
You can’t perform that action at this time.
0 commit comments