Skip to content

Commit fc3fbe4

Browse files
rmccorm4mc-nv
authored andcommitted
fix: Remove unnecessary pip upgrades in testing (#72)
1 parent b71088a commit fc3fbe4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ci/L0_backend_vllm/enabled_stream/enabled_stream_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async def request_iterator():
7272
result, error = response
7373
if expect_error:
7474
self.assertIsInstance(error, InferenceServerException)
75-
self.assertEquals(
75+
self.assertEqual(
7676
error.message(),
7777
"Error generating stream: When streaming, `exclude_input_in_output` = False is not allowed.",
7878
error,

ci/L0_backend_vllm/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
RET=0
2929
SUBTESTS="accuracy_test request_cancellation enabled_stream vllm_backend metrics_test"
3030

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

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

ci/L0_multi_gpu/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
RET=0
2929
SUBTESTS="vllm_backend multi_lora"
3030

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

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

0 commit comments

Comments
 (0)