We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab3b3e1 commit 7b755e7Copy full SHA for 7b755e7
.github/workflows/packing.yml
@@ -510,9 +510,9 @@ jobs:
510
511
- name: Install test requirements
512
run: |
513
- apt install -y python3.11-venv
514
- python3 -m venv create tempenv
515
- tempenv/bin/python3 -m pip install -r requirements-test.txt
+ python3 -m venv .venv
+ source .venv/bin/activate
+ pip3 install -r requirements-test.txt
516
if: matrix.target.os == 'debian'
517
518
- name: Install the crud module for testing purposes
@@ -522,7 +522,9 @@ jobs:
522
tt rocks install crud 1.4.2
523
524
- name: Run tests
525
- run: make test-pure-install
+ run: |
526
527
+ make test-pure-install
528
529
publish_deb:
530
if: startsWith(github.ref, 'refs/tags')
0 commit comments