"git@developer.sourcefind.cn:OpenDAS/openpcdet.git" did not exist on "8447a4754000cd9fb3018d8fd5b1c117bc5754b1"
Commit 75afd7c4 authored by mohammedabdulwahhab's avatar mohammedabdulwahhab Committed by GitHub
Browse files

fix: wheel for api-store should not be built and installed (#584)

parent 044e12e1
...@@ -342,8 +342,6 @@ RUN source /opt/dynamo/venv/bin/activate && \ ...@@ -342,8 +342,6 @@ RUN source /opt/dynamo/venv/bin/activate && \
uv build --wheel --out-dir /workspace/dist --python 3.10; \ uv build --wheel --out-dir /workspace/dist --python 3.10; \
fi && \ fi && \
cd /workspace && \ cd /workspace && \
uv build --wheel --out-dir /workspace/dist && \
cd /workspace/deploy/dynamo/api-store && \
uv build --wheel --out-dir /workspace/dist uv build --wheel --out-dir /workspace/dist
####################################### #######################################
...@@ -362,8 +360,7 @@ RUN mkdir -p /opt/dynamo/bindings/wheels && \ ...@@ -362,8 +360,7 @@ RUN mkdir -p /opt/dynamo/bindings/wheels && \
cp -r lib/bindings/c/include /opt/dynamo/bindings/. cp -r lib/bindings/c/include /opt/dynamo/bindings/.
RUN uv pip install /workspace/dist/ai_dynamo_runtime*cp312*.whl && \ RUN uv pip install /workspace/dist/ai_dynamo_runtime*cp312*.whl && \
uv pip install /workspace/dist/ai_dynamo*any.whl && \ uv pip install /workspace/dist/ai_dynamo*any.whl
uv pip install /workspace/dist/ai_dynamo_store*any.whl
########################################## ##########################################
########## Perf Analyzer Image ########### ########## Perf Analyzer Image ###########
......
...@@ -122,6 +122,7 @@ tmp_path_retention_policy = "failed" ...@@ -122,6 +122,7 @@ tmp_path_retention_policy = "failed"
# NOTE # NOTE
# We ignore model.py explcitly here to avoid mypy errors with duplicate modules # We ignore model.py explcitly here to avoid mypy errors with duplicate modules
# pytest overrides the default mypy exclude configuration and so we exclude here as well # pytest overrides the default mypy exclude configuration and so we exclude here as well
# Ignore mypy check for api-store component from Dynamo Deploy. Mypy analysis will fail since this package (and its dependencies) are not installed.
addopts = [ addopts = [
"-ra", "-ra",
"--showlocals", "--showlocals",
...@@ -130,6 +131,7 @@ addopts = [ ...@@ -130,6 +131,7 @@ addopts = [
"--mypy", "--mypy",
"--ignore-glob=*model.py", "--ignore-glob=*model.py",
"--ignore-glob=*_inc.py", "--ignore-glob=*_inc.py",
"--ignore-glob=deploy/dynamo/api-store/*",
# FIXME: Get relative/generic blob paths to work here # FIXME: Get relative/generic blob paths to work here
] ]
xfail_strict = true xfail_strict = true
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment