Skip to content

Commit cb0a858

Browse files
committed
Install breezy via pip in CI
The apt python3-breezy on ubuntu-latest is 3.3.5, but breezyshim 0.7.16 requires brz >= 3.3.6, causing tests to abort at initialization.
1 parent b6dd9fc commit cb0a858

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ jobs:
2020

2121
- name: Install Breezy
2222
run: |
23-
sudo apt-get update
24-
sudo apt-get install -y python3-breezy
23+
pip install 'breezy>=3.3.6'
2524
2625
- name: Install Rust toolchain
2726
uses: dtolnay/rust-toolchain@stable

.github/workflows/test.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ jobs:
1616

1717
- name: Install Breezy
1818
run: |
19-
sudo apt-get update
20-
sudo apt-get install -y python3-breezy
19+
pip install 'breezy>=3.3.6'
2120
2221
- name: Install Rust toolchain
2322
uses: dtolnay/rust-toolchain@stable

0 commit comments

Comments
 (0)