Skip to content

Commit

Permalink
Fix server spin-up integration tests (#3283)
Browse files Browse the repository at this point in the history
* Uninstall conflicting library

* Pass pip args
  • Loading branch information
schustmi authored Jan 13, 2025
1 parent ef3bc8b commit 91a8513
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/install-zenml-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ install_integrations() {

uv pip install $PIP_ARGS -r integration-requirements.txt
rm integration-requirements.txt

# https://github.com/Kludex/python-multipart/pull/166
# There is an install conflict between multipart and python_multipart
# which causes our server to fail in case both are installed. We
# need to uninstall this library for now until the changes make it into
# fastapi and then need to bump the fastapi version to resolve this.
uv pip uninstall $PIP_ARGS multipart
}

set -x
Expand Down

0 comments on commit 91a8513

Please sign in to comment.