Skip to content

Commit 91a8513

Browse files
authored
Fix server spin-up integration tests (#3283)
* Uninstall conflicting library * Pass pip args
1 parent ef3bc8b commit 91a8513

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

scripts/install-zenml-dev.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ install_integrations() {
6666

6767
uv pip install $PIP_ARGS -r integration-requirements.txt
6868
rm integration-requirements.txt
69+
70+
# https://github.com/Kludex/python-multipart/pull/166
71+
# There is an install conflict between multipart and python_multipart
72+
# which causes our server to fail in case both are installed. We
73+
# need to uninstall this library for now until the changes make it into
74+
# fastapi and then need to bump the fastapi version to resolve this.
75+
uv pip uninstall $PIP_ARGS multipart
6976
}
7077

7178
set -x

0 commit comments

Comments
 (0)