Skip to content

Commit 9ed6bea

Browse files
try tests without venv
1 parent db5831f commit 9ed6bea

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/packing.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,10 +515,16 @@ jobs:
515515
apt install -y python3-venv
516516
python3 -m venv .venv
517517
518+
- name: Install test requirements
519+
run: |
520+
pip3 install -r requirements-test.txt
521+
if: matrix.target.dist == 'noble'
522+
518523
- name: Install test requirements
519524
run: |
520525
. .venv/bin/activate
521526
pip3 install -r requirements-test.txt
527+
if: matrix.target.dist != 'noble'
522528

523529
- name: Install the crud module for testing purposes
524530
run: |
@@ -530,7 +536,6 @@ jobs:
530536
531537
- name: Run tests
532538
run: |
533-
. .venv/bin/activate
534539
make test-pure-install
535540
536541
publish_deb:

0 commit comments

Comments
 (0)