Skip to content

Commit d1f4bf6

Browse files
committed
ci: add linux qwen35 failure diagnostics
1 parent 7189812 commit d1f4bf6

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/test.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
needs: download-model
3434
runs-on: ubuntu-latest
3535
strategy:
36+
fail-fast: false
3637
matrix:
3738
python-version: ["3.9", "3.10", "3.11", "3.12"]
3839
steps:
@@ -50,6 +51,11 @@ jobs:
5051
with:
5152
path: ~/.cache/huggingface/hub
5253
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())"
5359
- name: Install dependencies (Linux/MacOS)
5460
run: |
5561
python -m pip install --upgrade pip
@@ -58,7 +64,7 @@ jobs:
5864
shell: bash
5965
- name: Test with pytest
6066
run: |
61-
python -m pytest
67+
python -m pytest -q -s tests/test_llama.py::test_real_model
6268
6369
build-windows:
6470
needs: download-model

0 commit comments

Comments
 (0)