Skip to content
Draft
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion container/Dockerfile.vllm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ ARG RUNTIME_IMAGE="nvcr.io/nvidia/cuda"
ARG RUNTIME_IMAGE_TAG="12.8.1-runtime-ubuntu24.04"

ARG GENAI_PERF_TAG="25d0188713adc47868d6b3f22426375237a90529"

#REMOVE THIS COMENT
# ALSO REMOVE THIS COMENT
FROM ${BASE_IMAGE}:${BASE_IMAGE_TAG} AS nixl_base
WORKDIR /opt/nixl
# Add a cache hint that only changes when the nixl commit changes
Expand Down
10 changes: 10 additions & 0 deletions success_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import pytest

Check notice

Code scanning / CodeQL

Unused import Note

Import of 'pytest' is not used.

Copilot Autofix

AI 8 months ago

To fix the problem, we need to remove the unused import statement. This will clean up the code and remove the unnecessary dependency on the pytest module. The change should be made in the success_test.py file by deleting the line that imports pytest.

Suggested changeset 1
success_test.py

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/success_test.py b/success_test.py
--- a/success_test.py
+++ b/success_test.py
@@ -1,2 +1 @@
-import pytest
 
EOF
@@ -1,2 +1 @@
import pytest

Copilot is powered by AI and may make mistakes. Always verify output.

def test_passin1():
assert True

def test_passin2():
assert True

def test_passin3():
assert True
Loading