File tree 1 file changed +6
-9
lines changed
1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -491,6 +491,12 @@ jobs:
491
491
- name : Remove connector source code
492
492
run : python3 .github/scripts/remove_source_code.py
493
493
494
+ - name : Create venv
495
+ run : |
496
+ apt install -y python3-venv
497
+ python3 -m venv .venv
498
+ . .venv/bin/activate
499
+
494
500
- name : Install tarantool ${{ matrix.tarantool }}
495
501
run : |
496
502
apt install -y curl
@@ -510,28 +516,19 @@ jobs:
510
516
env :
511
517
DEBIAN_FRONTEND : noninteractive
512
518
513
- - name : Create venv
514
- run : |
515
- apt install -y python3-venv
516
- python3 -m venv .venv
517
-
518
519
- name : Install test requirements
519
520
run : |
520
- . .venv/bin/activate
521
521
pip3 install -r requirements-test.txt
522
522
523
523
- name : Install the crud module for testing purposes
524
524
run : |
525
- . .venv/bin/activate
526
525
curl -L https://tarantool.io/release/2/installer.sh | bash
527
526
apt install -y tt
528
527
pip3 install cmake==3.15.3
529
528
tt rocks install crud
530
529
531
530
- name : Run tests
532
531
run : |
533
- . .venv/bin/activate
534
- pip3 install pyyaml
535
532
make test-pure-install
536
533
537
534
publish_deb :
You can’t perform that action at this time.
0 commit comments