mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
ci: Temperarily disable Telemetry during tests (#4090)
Closes: #4089 Signed-off-by: Derek Higgins <derekh@redhat.com>
This commit is contained in:
parent
03d23db910
commit
dc9497a3b2
2 changed files with 9 additions and 2 deletions
|
|
@ -12,9 +12,13 @@ before and after each test, ensuring test isolation.
|
|||
|
||||
import json
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
def test_streaming_chunk_count(mock_otlp_collector, llama_stack_client, text_model_id):
|
||||
"""Verify streaming adds chunk_count and __type__=async_generator."""
|
||||
|
||||
pytest.skip("Disabled: See https://github.com/llamastack/llama-stack/issues/4089")
|
||||
stream = llama_stack_client.chat.completions.create(
|
||||
model=text_model_id,
|
||||
messages=[{"role": "user", "content": "Test trace openai 1"}],
|
||||
|
|
@ -50,6 +54,7 @@ def test_streaming_chunk_count(mock_otlp_collector, llama_stack_client, text_mod
|
|||
def test_telemetry_format_completeness(mock_otlp_collector, llama_stack_client, text_model_id):
|
||||
"""Comprehensive validation of telemetry data format including spans and metrics."""
|
||||
|
||||
pytest.skip("Disabled: See https://github.com/llamastack/llama-stack/issues/4089")
|
||||
response = llama_stack_client.chat.completions.create(
|
||||
model=text_model_id,
|
||||
messages=[{"role": "user", "content": "Test trace openai with temperature 0.7"}],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue