We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7189812 commit d1f4bf6Copy full SHA for d1f4bf6
1 file changed
.github/workflows/test.yaml
@@ -33,6 +33,7 @@ jobs:
33
needs: download-model
34
runs-on: ubuntu-latest
35
strategy:
36
+ fail-fast: false
37
matrix:
38
python-version: ["3.9", "3.10", "3.11", "3.12"]
39
steps:
@@ -50,6 +51,11 @@ jobs:
50
51
with:
52
path: ~/.cache/huggingface/hub
53
key: ${{ runner.os }}-model-${{ env.REPO_ID }}-${{ env.MODEL_FILE }}
54
+ - name: System Info
55
+ run: |
56
+ uname -a
57
+ lscpu
58
+ python -c "import platform; print(platform.machine(), platform.architecture())"
59
- name: Install dependencies (Linux/MacOS)
60
run: |
61
python -m pip install --upgrade pip
@@ -58,7 +64,7 @@ jobs:
64
shell: bash
65
- name: Test with pytest
66
- python -m pytest
67
+ python -m pytest -q -s tests/test_llama.py::test_real_model
62
68
63
69
build-windows:
70
0 commit comments