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 effda63 commit 3a351c2Copy full SHA for 3a351c2
tests/models/test_model_names.py
@@ -48,7 +48,8 @@ def vcr_config(): # pragma: lax no cover
48
return {'record_mode': 'none'}
49
50
51
-def test_known_model_names():
+def test_known_model_names(): # pragma: lax no cover
52
+ # Coverage seems to be misbehaving..?
53
def get_model_names(model_name_type: Any) -> Iterator[str]:
54
for arg in get_args(model_name_type):
55
if isinstance(arg, str):
@@ -126,7 +127,8 @@ class CerebrasModel(TypedDict):
126
127
owned_by: Literal['Cerebras']
128
129
-def get_cerebras_model_names():
130
+def get_cerebras_model_names(): # pragma: lax no cover
131
132
api_key = os.getenv('CEREBRAS_API_KEY', 'testing')
133
134
response = httpx.get(
0 commit comments