Skip to content

Commit 1e2be0e

Browse files
authored
Merge pull request #12559 from notatallshaw/fix-ubuntu-ci-tests
Fix Ubuntu CI tests
2 parents db99b5b + a3a5a08 commit 1e2be0e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ jobs:
124124

125125
- name: Install Ubuntu dependencies
126126
if: matrix.os == 'Ubuntu'
127-
run: sudo apt-get install bzr
127+
run: |
128+
sudo apt-get update
129+
sudo apt-get install bzr
128130
129131
- name: Install MacOS dependencies
130132
if: matrix.os == 'MacOS'
@@ -224,7 +226,9 @@ jobs:
224226
python-version: "3.10"
225227

226228
- name: Install Ubuntu dependencies
227-
run: sudo apt-get install bzr
229+
run: |
230+
sudo apt-get update
231+
sudo apt-get install bzr
228232
229233
- run: pip install nox 'virtualenv<20' 'setuptools != 60.6.0'
230234

news/12559.trivial.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix Ubuntu CI Tests

0 commit comments

Comments
 (0)