You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- if e2e is only tested on kind with specific guide gaie-sim then make
it clear and fix the label value
- llm-d.ai/guide:simlulated-accelerators
- llm-d.ai/model:random
Signed-off-by: Wen Zhou <wenzhou@redhat.com>
Copy file name to clipboardExpand all lines: docs/developer-guide/testing.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ WVA has a multi-layered testing strategy:
8
8
9
9
1.**Unit Tests** - Fast, isolated tests for individual packages and functions
10
10
2.**Integration Tests** - Tests for component interactions within the controller
11
-
3.**E2E Tests** - Environment-agnostic end-to-end tests (Kind emulated or OpenShift), with smoke and full tiers
11
+
3.**E2E Tests** - End-to-end tests on Kind clusters with emulated GPUs, with smoke and full tiers
12
12
13
13
## Unit Tests
14
14
@@ -134,10 +134,12 @@ var _ = AfterSuite(func() {
134
134
135
135
## End-to-End Tests
136
136
137
-
WVA provides a **single consolidated E2E suite** that runs on multiple environments (Kind with emulated GPUs, or OpenShift/kubernetes with real infrastructure). Tests are environment-agnostic and parameterized via environment variables; they create VA, HPA, and model services dynamically as part of the test workflow.
137
+
WVA provides a **single consolidated E2E suite** that runs on Kind clusters with emulated GPUs. Tests create VA, HPA, and model services dynamically as part of the test workflow.
138
+
139
+
> **Note**: E2E tests are only supported on Kind clusters (`ENVIRONMENT=kind-emulator`). The test fixtures and labels are configured specifically for the Kind emulator deployment which uses the `simulated-accelerators` guide from llm-d. Running E2E tests on other environments (OpenShift, generic Kubernetes) is not supported for now.
138
140
139
141
-**Location**: `test/e2e/`
140
-
-**Environments**: Kind (emulated), OpenShift, or generic Kubernetes
0 commit comments