Skip to content

Commit e54338b

Browse files
committed
chore: trigger macOS workflow on feature branch
1 parent d206626 commit e54338b

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/macos-build.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,18 @@ jobs:
3030
shell: bash
3131
run: |
3232
python -m pip install --upgrade pip
33-
pip install -r requirements-tests.txt
34-
pip install pyinstaller
33+
python -m pip install -r requirements-tests.txt
34+
python -m pip install pyinstaller
35+
36+
- name: Run tests
37+
shell: bash
38+
run: |
39+
python -m pytest -q
3540
3641
- name: Verify Universal 2 binary dependencies
3742
shell: bash
3843
run: |
39-
PSUTIL_SO=$(python3 -c "import psutil._psutil_osx as m; print(m.__file__)")
44+
PSUTIL_SO=$(python -c "import psutil._psutil_osx as m; print(m.__file__)")
4045
lipo -info "$PSUTIL_SO"
4146
lipo -info "$PSUTIL_SO" | grep -q "x86_64" || { echo "ERROR: psutil missing x86_64 slice"; exit 1; }
4247
lipo -info "$PSUTIL_SO" | grep -q "arm64" || { echo "ERROR: psutil missing arm64 slice"; exit 1; }

0 commit comments

Comments
 (0)