diff --git a/.github/workflows/python-tests.yaml b/.github/workflows/python-tests.yaml index ea0230832677..33af87e3b9f4 100644 --- a/.github/workflows/python-tests.yaml +++ b/.github/workflows/python-tests.yaml @@ -16,6 +16,7 @@ on: - requirements-dev.txt - setup.cfg - Dockerfile + - scripts/entrypoint.sh push: branches: - main @@ -28,7 +29,7 @@ on: - requirements-dev.txt - setup.cfg - Dockerfile - + - scripts/entrypoint.sh permissions: contents: read actions: write diff --git a/scripts/entrypoint.sh b/scripts/entrypoint.sh index 1846618dbce1..3c780321ef1d 100755 --- a/scripts/entrypoint.sh +++ b/scripts/entrypoint.sh @@ -8,8 +8,8 @@ if [ -f ~/.bashrc ]; then fi if [ ! -z "$EXTRA_PIP_PACKAGES" ]; then - echo "+pip install $EXTRA_PIP_PACKAGES" - pip install $EXTRA_PIP_PACKAGES + echo "+uv pip install $EXTRA_PIP_PACKAGES" + uv pip install --system $EXTRA_PIP_PACKAGES fi if [ -z "$*" ]; then