File tree 1 file changed +10
-5
lines changed
1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -495,10 +495,15 @@ jobs:
495
495
run : |
496
496
apt install -y python3-venv
497
497
python3 -m venv .venv
498
+
499
+ - name : Install test requirements
500
+ run : |
498
501
. .venv/bin/activate
502
+ pip3 install -r requirements-test.txt
499
503
500
504
- name : Install tarantool ${{ matrix.tarantool }}
501
505
run : |
506
+ . .venv/bin/activate
502
507
apt install -y curl
503
508
curl -L https://tarantool.io/release/2/installer.sh | bash
504
509
apt install -y tarantool tarantool-dev
@@ -512,23 +517,23 @@ jobs:
512
517
path : deb_dist
513
518
514
519
- name : Install the package from deb artifacts
515
- run : apt install -y `pwd`/deb_dist/python3-tarantool_*.deb
520
+ run : |
521
+ . .venv/bin/activate
522
+ apt install -y `pwd`/deb_dist/python3-tarantool_*.deb
516
523
env :
517
524
DEBIAN_FRONTEND : noninteractive
518
525
519
- - name : Install test requirements
520
- run : |
521
- pip3 install -r requirements-test.txt
522
-
523
526
- name : Install the crud module for testing purposes
524
527
run : |
528
+ . .venv/bin/activate
525
529
curl -L https://tarantool.io/release/2/installer.sh | bash
526
530
apt install -y tt
527
531
pip3 install cmake==3.15.3
528
532
tt rocks install crud
529
533
530
534
- name : Run tests
531
535
run : |
536
+ . .venv/bin/activate
532
537
make test-pure-install
533
538
534
539
publish_deb :
You can’t perform that action at this time.
0 commit comments