get svnadmin installed on macOS runners in CI

This commit is contained in:
Jack O'Connor 2024-09-17 11:43:10 -07:00
parent 26437a2c99
commit bb88e994be
1 changed files with 3 additions and 1 deletions

View File

@ -29,7 +29,9 @@ jobs:
- run: get-command python ; python --version ; get-command pip ; pip --version
if: matrix.os == 'windows-latest'
- run: git --version
# macOS doesn't currently have Mercurial installed by default.
# macOS doesn't currently have hg or svnadmin installed by default.
- run: brew install subversion
if: matrix.os == 'macOS-latest'
- run: pip install wheel && pip install mercurial
if: matrix.os == 'macOS-latest'
# Install test dependencies, like flake8.