File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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; }
You can’t perform that action at this time.
0 commit comments