Skip to content

Commit 5002166

Browse files
authored
Move eval 03 out of easy (#912)
1 parent 32f6a7e commit 5002166

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ markers = [
101101
"synthetic: Tests using synthetic data",
102102
"network: Tests requiring network connectivity",
103103
"runbooks: Tests involving runbook functionality",
104-
"kafka: Tests involving Kafka functionality",
105104
"misleading-history: Tests with misleading historical data",
106105
"chain-of-causation: Tests involving chain-of-causation analysis",
107106
"slackbot: Tests involving Slack bot functionality",
@@ -119,8 +118,9 @@ markers = [
119118
"toolset-limitation: Tests that cannot be solved no matter how smart the model, unless we improve the underlying toolsets themselves",
120119
"ask-for-clarification: Tests where Holmes should ask the user for clarification",
121120
"database: Tests involving database interactions",
122-
"datadog: DataDog toolset",
123-
"traces: Tests where the ai is expected to find the solution using the traces"
121+
"traces: Tests where the ai is expected to find the solution using the traces",
122+
"answer-given-wrong-place: LLM gave the answer in intermediate steps, not final answer, so its harder for the user to see the answer",
123+
"datadog: DataDog toolset"
124124
]
125125

126126
addopts = [

tests/llm/fixtures/test_ask_holmes/03_what_is_the_command_to_port_forward/test_case.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ expected_output:
66
- Should NOT just say "find grafana in your cluster" or give generic instructions
77
tags:
88
- kubernetes
9-
- easy
9+
- medium
10+
- answer-given-wrong-place # LLM gave the answer in intermediate steps, not final answer, so harder for user to see
1011
before_test: |
1112
kubectl create namespace app-03
1213
cat <<EOF | kubectl apply -f -

0 commit comments

Comments
 (0)