We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d578b42 commit 1c3c31eCopy full SHA for 1c3c31e
tests/models/test_outlines.py
@@ -80,8 +80,10 @@
80
not transformer_imports_successful(), reason='transformers not available'
81
)
82
83
+# Disabled because the llama_cpp tests have been regularly failing in CI with `Fatal Python error: Illegal instruction`:
84
+# https://github.com/pydantic/pydantic-ai/actions/runs/19547773220/job/55970947389
85
skip_if_llama_cpp_imports_unsuccessful = pytest.mark.skipif(
- not llama_cpp_imports_successful(), reason='llama_cpp not available'
86
+ not llama_cpp_imports_successful() or True, reason='llama_cpp not available'
87
88
89
skip_if_vllm_imports_unsuccessful = pytest.mark.skipif(not vllm_imports_successful(), reason='vllm not available')
0 commit comments