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
Copy file name to clipboardExpand all lines: docs/contributing.md
+33-1Lines changed: 33 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,11 +47,43 @@ Before submitting a pull request, please ensure your changes pass linting and un
47
47
```bash
48
48
ruff check .
49
49
```
50
-
-**Testing:** We use [Pytest](https://docs.pytest.org/) for unit tests. Run them with:
50
+
-**Unit tests:** We use [Pytest](https://docs.pytest.org/) for unit tests. Run them with:
51
+
51
52
```bash
52
53
pytest
53
54
```
54
55
56
+
-**E2E tests:** End-to-end tests run real workloads against a GKE cluster. They live in `tests/e2e/` and are skipped by default unless explicitly enabled.
57
+
58
+
**Prerequisites:**
59
+
- A GCP project with a provisioned GKE cluster (see [Quick Start](../README.md#quick-start))
60
+
- Google Cloud SDK authenticated (`gcloud auth login` and `gcloud auth application-default login`)
0 commit comments