Skip to content

Commit

Permalink
Merge pull request #15913 from MikeMcQuaid/github_actions_python_work…
Browse files Browse the repository at this point in the history
…around

workflows/tests: workaround GitHub Actions python issues.
  • Loading branch information
MikeMcQuaid committed Aug 26, 2023
2 parents 3c8b494 + 298003b commit aaf9091
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,10 @@ jobs:

- name: Install brew tests macOS dependencies
if: runner.os != 'Linux'
run: brew install subversion
run: |
# Workaround GitHub Actions Python issues
brew unlink python && brew link --overwrite python
brew install subversion
# brew tests doesn't like world writable directories
- name: Cleanup permissions
Expand Down

0 comments on commit aaf9091

Please sign in to comment.