Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/python_unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ jobs:
HTTPBIN_URL: ${{ secrets.httpbin_url || 'https://httpbin.org' }}

steps:
- name: macOS cleanup
if: runner.os == 'macOS'
# Disable Spotlight indexing and try to kill all useless processes that could drain CPU during tests
run: |
sudo mdutil -i off /
sudo killall Finder spindump ecosystemanalyticsd SystemUIServer NotificationCenter mds mds_stores mds_worker mdworker mdworker_shared || true

- name: Checkout repository
uses: actions/checkout@v4

Expand Down
Loading