Skip to content

Commit 98ccacf

Browse files
move venv creation after python3-tarantool installation
1 parent c673183 commit 98ccacf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/packing.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -491,11 +491,6 @@ jobs:
491491
- name: Remove connector source code
492492
run: python3 .github/scripts/remove_source_code.py
493493

494-
- name: Create venv
495-
run: |
496-
apt install -y python3-venv
497-
python3 -m venv .venv
498-
499494
- name: Install tarantool ${{ matrix.tarantool }}
500495
run: |
501496
apt install -y curl
@@ -516,6 +511,11 @@ jobs:
516511
env:
517512
DEBIAN_FRONTEND: noninteractive
518513

514+
- name: Create venv
515+
run: |
516+
apt install -y python3-venv
517+
python3 -m venv .venv
518+
519519
- name: Install test requirements
520520
run: |
521521
pip3 install -r requirements-test.txt

0 commit comments

Comments
 (0)