From 7b7e70557bb80ef5f033e3e9caca68484aae78c5 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Fri, 26 Mar 2021 14:00:32 +0000 Subject: [PATCH] trying to fix fastapi tests (#2584) * trying to fix fastapi tests * try with 3.8 :-( * try pinning sqlalchemy --- tests/test_fastapi.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_fastapi.sh b/tests/test_fastapi.sh index 759831e..d36057f 100755 --- a/tests/test_fastapi.sh +++ b/tests/test_fastapi.sh @@ -8,6 +8,10 @@ git fetch --tags latest_tag_commit=$(git rev-list --tags --max-count=1) latest_tag=$(git describe --tags "${latest_tag_commit}") git checkout "${latest_tag}" + +# FIXME this is a temporary workaround while fastapi tests are broken with newer sqlalchemy +pip install SQLAlchemy==1.3.23 + pip install -U flit flit install