Skip to content

Commit

Permalink
fix: Remove unnecessary pip upgrades in testing (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccorm4 authored and mc-nv committed Nov 23, 2024
1 parent b71088a commit fc3fbe4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/L0_backend_vllm/enabled_stream/enabled_stream_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async def request_iterator():
result, error = response
if expect_error:
self.assertIsInstance(error, InferenceServerException)
self.assertEquals(
self.assertEqual(
error.message(),
"Error generating stream: When streaming, `exclude_input_in_output` = False is not allowed.",
error,
Expand Down
2 changes: 1 addition & 1 deletion ci/L0_backend_vllm/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
RET=0
SUBTESTS="accuracy_test request_cancellation enabled_stream vllm_backend metrics_test"

python3 -m pip install --upgrade pip && pip3 install tritonclient[grpc]
python3 -m pip install tritonclient[grpc]

for TEST in ${SUBTESTS}; do
(cd ${TEST} && bash -ex test.sh && cd ..)
Expand Down
2 changes: 1 addition & 1 deletion ci/L0_multi_gpu/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
RET=0
SUBTESTS="vllm_backend multi_lora"

python3 -m pip install --upgrade pip && pip3 install tritonclient[grpc]
python3 -m pip install tritonclient[grpc]

for TEST in ${SUBTESTS}; do
(cd ${TEST} && bash -ex test.sh && cd ..)
Expand Down

0 comments on commit fc3fbe4

Please sign in to comment.