Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5bd0a12

Browse files
committedApr 3, 2025·
remove bullseye from test; common step to activate venv
1 parent 35d8bb2 commit 5bd0a12

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed
 

‎.github/workflows/packing.yml

+7-9
Original file line numberDiff line numberDiff line change
@@ -467,8 +467,8 @@ jobs:
467467

468468
matrix:
469469
target:
470-
- os: debian
471-
dist: bullseye # 11
470+
# - os: debian
471+
# dist: bullseye # 11
472472
- os: debian
473473
dist: bookworm # 12
474474
- os: ubuntu
@@ -510,17 +510,15 @@ jobs:
510510
env:
511511
DEBIAN_FRONTEND: noninteractive
512512

513-
- name: Install test requirements
514-
run: pip3 install -r requirements-test.txt
515-
if: matrix.target.os == 'ubuntu'
516-
517-
- name: Install test requirements
513+
- name: Activate venv
518514
run: |
519515
apt install -y python3.11-venv
520516
python3 -m venv .venv
521517
. .venv/bin/activate
522-
pip3 install -r requirements-test.txt
523-
if: matrix.target.os == 'debian'
518+
# if: matrix.target.os == 'debian'
519+
520+
- name: Install test requirements
521+
run: pip3 install -r requirements-test.txt'
524522

525523
- name: Install the crud module for testing purposes
526524
run: |

0 commit comments

Comments
 (0)
Please sign in to comment.