From 338a70de9f3a0ca945b6b0d232d8a3d5946c166e Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Wed, 3 Aug 2022 11:18:45 -0400 Subject: [PATCH] Use `pip` directly to install FastAPI in its integration test (#4282) --- tests/test_fastapi.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_fastapi.sh b/tests/test_fastapi.sh index ff5a3e3..26fcc21 100755 --- a/tests/test_fastapi.sh +++ b/tests/test_fastapi.sh @@ -9,7 +9,6 @@ latest_tag_commit=$(git rev-list --tags --max-count=1) latest_tag=$(git describe --tags "${latest_tag_commit}") git checkout "${latest_tag}" -pip install -U flit -flit install +pip install .[all,dev,doc,test] ./scripts/test.sh