Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/llmobs/test_llmobs_eval_metric_agentless_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def test_buffer_limit(mock_writer_logs):
)


@pytest.mark.skip(reason="Skipping due to flakiness in hitting the staging endpoint")
def test_send_metric_bad_api_key(mock_writer_logs):
llmobs_eval_metric_writer = LLMObsEvalMetricWriter(1, 1, is_agentless=True, _site=DD_SITE, _api_key="<bad-api-key>")

Expand Down Expand Up @@ -142,6 +143,7 @@ def test_send_multiple_events(mock_writer_logs):
)


@pytest.mark.skip(reason="Skipping due to flakiness in hitting the staging endpoint")
def test_send_on_exit(mock_writer_logs, run_python_code_in_subprocess):
env = os.environ.copy()
pypath = [os.path.dirname(os.path.dirname(os.path.dirname(__file__)))]
Expand Down
1 change: 1 addition & 0 deletions tests/llmobs/test_llmobs_evaluator_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def test_evaluator_runner_multiple_evaluators(llmobs, mock_llmobs_eval_metric_wr
]


@pytest.mark.skip(reason="Skipping due to flakiness in hitting the staging endpoint")
def test_evaluator_runner_on_exit(mock_writer_logs, run_python_code_in_subprocess):
env = os.environ.copy()
pypath = [os.path.dirname(os.path.dirname(os.path.dirname(__file__)))]
Expand Down
Loading