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:
510510 env :
511511 DEBIAN_FRONTEND : noninteractive
512512
513- - name : Activate venv
513+ - name : Create venv
514514 run : |
515515 apt install -y python3-venv
516516 python3 -m venv .venv
517- . .venv/bin/activate
518517
519518 - 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
521522
522523 - name : Install the crud module for testing purposes
523524 run : |
525+ . .venv/bin/activate
524526 curl -L https://tarantool.io/release/2/installer.sh | bash
525527 apt install -y tt
526528 pip3 install cmake==3.15.3
527529 tt rocks install crud
528530
529- - name : Run tests
530- run : make test-pure-install
531- if : matrix.target.os == 'ubuntu'
532-
533531 - name : Run tests
534532 run : |
535533 . .venv/bin/activate
536534 make test-pure-install
537- if : matrix.target.os == 'debian'
538535
539536 publish_deb :
540537 if : startsWith(github.ref, 'refs/tags')
You can’t perform that action at this time.
0 commit comments