This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 79d1a9d1cb Force installing Breeze on CI (#23196)
79d1a9d1cb is described below
commit 79d1a9d1cb815453ab99868a52e5b20ad6074eb6
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun Apr 24 15:51:17 2022 +0200
Force installing Breeze on CI (#23196)
Since our environment is re-used between runs it might be that
different version of Breeze has been installed in the cache
previously. This change force-installs breeze every time the
job is started to make sure current Breeze version is used.
---
scripts/ci/install_breeze.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/ci/install_breeze.sh b/scripts/ci/install_breeze.sh
index 4055d2272b..e73f6c28b6 100755
--- a/scripts/ci/install_breeze.sh
+++ b/scripts/ci/install_breeze.sh
@@ -20,5 +20,5 @@ set -euxo pipefail
cd "$( dirname "${BASH_SOURCE[0]}" )/../../"
python -m pip install pipx
-python -m pipx install --editable ./dev/breeze/
+python -m pipx install --editable ./dev/breeze/ --force
echo '/home/runner/.local/bin' >> "${GITHUB_PATH}"