From 9bbcad241d12d4e1910599321b1e4bc899279e80 Mon Sep 17 00:00:00 2001 From: wjiuhe Date: Fri, 3 Jun 2022 12:47:31 +0800 Subject: [PATCH] Update Backend Script for V0.1.0 --- scripts/backend-api-test-using-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/backend-api-test-using-docker.sh b/scripts/backend-api-test-using-docker.sh index 26ff916..271f3a9 100755 --- a/scripts/backend-api-test-using-docker.sh +++ b/scripts/backend-api-test-using-docker.sh @@ -10,7 +10,7 @@ rm -rf dist/* poetry build MOUNT_POINT="/opt/workspace" CMD="cd ${MOUNT_POINT}" -CMD+=" && pip install dist/*.whl pytest && pytest tests/api_tests" +CMD+=" && pip install dist/*.whl pytest requests uvicorn && pytest tests/api_tests" echo $CMD for version in "3.6.15" "3.7.13" "3.8.13" "3.9.12" "3.10.4";