We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db5831f commit 9ed6beaCopy full SHA for 9ed6bea
.github/workflows/packing.yml
@@ -515,10 +515,16 @@ jobs:
515
apt install -y python3-venv
516
python3 -m venv .venv
517
518
+ - name: Install test requirements
519
+ run: |
520
+ pip3 install -r requirements-test.txt
521
+ if: matrix.target.dist == 'noble'
522
+
523
- name: Install test requirements
524
run: |
525
. .venv/bin/activate
526
pip3 install -r requirements-test.txt
527
+ if: matrix.target.dist != 'noble'
528
529
- name: Install the crud module for testing purposes
530
@@ -530,7 +536,6 @@ jobs:
536
531
537
- name: Run tests
532
538
533
- . .venv/bin/activate
534
539
make test-pure-install
535
540
541
publish_deb:
0 commit comments