From 6f030d600931be2c54159d066ee45c99f848323b Mon Sep 17 00:00:00 2001 From: Qing Lan Date: Tue, 6 Dec 2022 13:42:35 -0800 Subject: [PATCH] fix on the test failure --- .github/workflows/integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 371e06be3..377112d3c 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -161,14 +161,14 @@ jobs: working-directory: tests/integration run: | ./launch_container.sh deepjavalibrary/djl-serving:$DJLSERVING_DOCKER_TAG $PWD/models pytorch-inf1 \ - serve -m test::PyTorch=file:///opt/ml/model/resnet18_inf1_1_11.tar.gz?model_name=resnet18_inf1_1_11 + serve -m test::PyTorch=file:///opt/ml/model/resnet18_inf1_1_12.tar.gz?model_name=resnet18_inf1_1_12 ./test_client.sh http://127.0.0.1:8080/predictions/test image/jpg https://resources.djl.ai/images/kitten.jpg docker rm -f $(docker ps -aq) - name: Test Pytorch Python mode working-directory: tests/integration run: | ./launch_container.sh deepjavalibrary/djl-serving:$DJLSERVING_DOCKER_TAG $PWD/models pytorch-inf1 \ - serve -m test::Python=file:///opt/ml/model/resnet18_inf1_1_11.tar.gz + serve -m test::Python=file:///opt/ml/model/resnet18_inf1_1_12.tar.gz ./test_client.sh http://127.0.0.1:8080/predictions/test image/jpg https://resources.djl.ai/images/kitten.jpg docker rm -f $(docker ps -aq) - name: On fail step