Skip to content

Commit f9b73ed

Browse files
Install missing Python package (#6462)
1 parent 886e306 commit f9b73ed

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

Diff for: .github/workflows/CI-unixish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,7 @@ jobs:
373373
python3 -m pip install pip --upgrade
374374
python3 -m pip install pytest
375375
python3 -m pip install pytest-timeout
376+
python3 -m pip install psutil
376377
377378
- name: Build cppcheck
378379
run: |

Diff for: .github/workflows/CI-windows.yml

+1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ jobs:
132132
python -m pip install pytest || exit /b !errorlevel!
133133
python -m pip install pytest-custom_exit_code || exit /b !errorlevel!
134134
python -m pip install pytest-timeout || exit /b !errorlevel!
135+
python -m pip install psutil || exit /b !errorlevel!
135136
136137
- name: Run CMake
137138
if: false # TODO: enable

Diff for: .github/workflows/asan.yml

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
python3 -m pip install pip --upgrade
6565
python3 -m pip install pytest
6666
python3 -m pip install pytest-timeout
67+
python3 -m pip install psutil
6768
6869
# TODO: disable all warnings
6970
- name: CMake

Diff for: .github/workflows/tsan.yml

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
python3 -m pip install pip --upgrade
6565
python3 -m pip install pytest
6666
python3 -m pip install pytest-timeout
67+
python3 -m pip install psutil
6768
6869
- name: CMake
6970
run: |

Diff for: .github/workflows/ubsan.yml

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
python3 -m pip install pip --upgrade
6464
python3 -m pip install pytest
6565
python3 -m pip install pytest-timeout
66+
python3 -m pip install psutil
6667
6768
# TODO: disable warnings
6869
- name: CMake

0 commit comments

Comments
 (0)