File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -510,31 +510,28 @@ jobs:
510
510
env :
511
511
DEBIAN_FRONTEND : noninteractive
512
512
513
- - name : Activate venv
513
+ - name : Create venv
514
514
run : |
515
515
apt install -y python3-venv
516
516
python3 -m venv .venv
517
- . .venv/bin/activate
518
517
519
518
- name : Install test requirements
520
- run : pip3 install -r requirements-test.txt
519
+ run : |
520
+ . .venv/bin/activate
521
+ pip3 install -r requirements-test.txt
521
522
522
523
- name : Install the crud module for testing purposes
523
524
run : |
525
+ . .venv/bin/activate
524
526
curl -L https://tarantool.io/release/2/installer.sh | bash
525
527
apt install -y tt
526
528
pip3 install cmake==3.15.3
527
529
tt rocks install crud
528
530
529
- - name : Run tests
530
- run : make test-pure-install
531
- if : matrix.target.os == 'ubuntu'
532
-
533
531
- name : Run tests
534
532
run : |
535
533
. .venv/bin/activate
536
534
make test-pure-install
537
- if : matrix.target.os == 'debian'
538
535
539
536
publish_deb :
540
537
if : startsWith(github.ref, 'refs/tags')
You can’t perform that action at this time.
0 commit comments