use selected python to pip install
CI for bec_testing_plugin / test (push) Successful in 31s

This commit is contained in:
2026-05-19 16:00:36 +02:00
parent 89d6e9148f
commit 679da87ca2
+6 -3
View File
@@ -20,7 +20,10 @@ jobs:
- name: Install tools - name: Install tools
run: | run: |
pip install copier PySide6 bec_lib echo $(which python)
echo $(python -m pip list)
python -m pip install copier PySide6 bec_lib
echo $(which copier)
python -c "import bec_lib; print(bec_lib.__file__)" python -c "import bec_lib; print(bec_lib.__file__)"
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -33,9 +36,9 @@ jobs:
branch="chore/update-template-$(python -m uuid)" branch="chore/update-template-$(python -m uuid)"
echo "switching to branch $branch" echo "switching to branch $branch"
git checkout -b $branch git checkout -b $branch
python -c "import bec_lib; print(bec_lib.__file__)"
echo "Running copier update..." echo "Running copier update..."
copier update --trust --defaults --conflict inline 2>&1 | tee copier.log python -m copier update --trust --defaults --conflict inline 2>&1 | tee copier.log
status=${PIPESTATUS[0]} status=${PIPESTATUS[0]}
output="$(cat copier.log)" output="$(cat copier.log)"
echo $output echo $output