Skip to content

Commit

Permalink
Try to fix issues with installing Mercurial via brew
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Nov 23, 2023
1 parent cc6ddc0 commit 4e77ee3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ jobs:
- name: Install Mercurial
if: startsWith(matrix.os, 'macos-')
run: brew install mercurial
run: |
brew update
brew install mercurial
env:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: "1"

- name: Run tests with coverage
if: startsWith(matrix.toxenv, 'py')
Expand Down

0 comments on commit 4e77ee3

Please sign in to comment.