We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0b7eab commit 9e24bedCopy full SHA for 9e24bed
.github/workflows/python_unit_tests.yaml
@@ -30,6 +30,13 @@ jobs:
30
HTTPBIN_URL: ${{ secrets.httpbin_url || 'https://httpbin.org' }}
31
32
steps:
33
+ - name: macOS cleanup
34
+ if: runner.os == 'macOS'
35
+ # Disable Spotlight indexing and try to kill all useless processes that could drain CPU during tests
36
+ run: |
37
+ sudo mdutil -i off /
38
+ sudo killall Finder spindump ecosystemanalyticsd SystemUIServer NotificationCenter mds mds_stores mds_worker mdworker mdworker_shared || true
39
+
40
- name: Checkout repository
41
uses: actions/checkout@v4
42
0 commit comments