Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4ac489e

Browse files
committedApr 8, 2025·
add /usr/bin to PYTHONPATH
1 parent fbe5d69 commit 4ac489e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎.github/workflows/packing.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -555,12 +555,10 @@ jobs:
555555

556556
- name: Run tests
557557
run: |
558-
apt install --reinstall python3
559-
python3 -c "import runpy; print('runpy module is available')"
560-
. .venv/bin/activate
561558
apt install -y `pwd`/deb_dist/python3-tarantool_*.deb
562559
ls -la /usr/lib/python3/dist-packages/tarantool
563-
export PYTHONPATH=$PYTHONPATH:/usr/lib/python3/dist-packages/tarantool:/usr/lib/python3/dist-packages/tarantool/
560+
. .venv/bin/activate
561+
export PYTHONPATH=$PYTHONPATH:/usr/bin:/usr/lib/python3/dist-packages/tarantool
564562
echo $PYTHONPATH
565563
make test-pure-install
566564
if: matrix.target.dist == 'bookworm' || matrix.target.dist == 'noble'

0 commit comments

Comments
 (0)
Please sign in to comment.