Skip to content

Commit 2191c02

Browse files
committed
Remove pytest warning.
Signed-off-by: pvijayakrish <[email protected]>
1 parent 0dcc599 commit 2191c02

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

container/Dockerfile.sglang

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,7 @@ RUN chmod 755 /opt/dynamo/.launch_screen && \
380380
USER dynamo
381381

382382
# Copy tests, benchmarks, deploy and components for CI with correct ownership
383+
COPY --chown=dynamo: pyproject.toml /workspace/
383384
COPY --chown=dynamo: tests /workspace/tests
384385
COPY --chown=dynamo: examples /workspace/examples
385386
COPY --chown=dynamo: benchmarks /workspace/benchmarks
@@ -481,7 +482,7 @@ RUN curl --retry 3 --retry-delay 2 -LSso /usr/local/bin/clang-format https://git
481482
&& rm -rf clangd_18.1.3 clangd.zip
482483

483484
# Editable install of dynamo
484-
COPY pyproject.toml README.md hatch_build.py /workspace/
485+
COPY README.md hatch_build.py /workspace/
485486
RUN python3 -m pip install --no-deps -e .
486487

487488
# Install Python development packages

container/Dockerfile.trtllm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ RUN --mount=type=bind,source=./container/deps/requirements.txt,target=/tmp/requi
367367
cupy-cuda13x
368368

369369
# Copy tests, benchmarks, deploy and components for CI with correct ownership
370+
COPY --chown=dynamo: pyproject.toml /workspace/
370371
COPY --chown=dynamo: tests /workspace/tests
371372
COPY --chown=dynamo: examples /workspace/examples
372373
COPY --chown=dynamo: benchmarks /workspace/benchmarks
@@ -457,7 +458,7 @@ COPY --from=dynamo_base /usr/local/cargo /usr/local/cargo
457458
RUN uv pip install --no-cache maturin[patchelf]
458459

459460
# Editable install of dynamo
460-
COPY pyproject.toml README.md hatch_build.py /workspace/
461+
COPY README.md hatch_build.py /workspace/
461462
RUN uv pip install --no-cache --no-deps -e .
462463

463464
CMD []

0 commit comments

Comments
 (0)