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
@@ -35,38 +34,38 @@ was for a different project), you probably don't need to do it again.
35
34
Visit <https://cla.developers.google.com/> to see your current agreements or to
36
35
sign a new one.
37
36
38
-
###Review our community guidelines
37
+
## Review our community guidelines
39
38
40
39
This project follows
41
40
[Google's Open Source Community Guidelines](https://opensource.google/conduct/).
42
41
43
-
##Contribution workflow
42
+
# Contribution workflow
44
43
45
-
###Finding Issues to Work On
44
+
## Finding Issues to Work On
46
45
47
46
- Browse issues labeled **`good first issue`** (newcomer-friendly) or **`help wanted`** (general contributions).
48
47
- For other issues, please kindly ask before contributing to avoid duplication.
49
48
50
49
51
-
###Requirement for PRs
50
+
## Requirement for PRs
52
51
53
52
- All PRs, other than small documentation or typo fixes, should have a Issue assoicated. If not, please create one.
54
53
- Small, focused PRs. Keep changes minimal—one concern per PR.
55
54
- For bug fixes or features, please provide logs or screenshot after the fix is applied to help reviewers better understand the fix.
56
55
- Please include a `testing plan` section in your PR to talk about how you will test. This will save time for PR review. See `Testing Requirements` section for more details.
57
56
58
-
###Large or Complex Changes
57
+
## Large or Complex Changes
59
58
For substantial features or architectural revisions:
60
59
61
60
- Open an Issue First: Outline your proposal, including design considerations and impact.
62
61
- Gather Feedback: Discuss with maintainers and the community to ensure alignment and avoid duplicate work
63
62
64
-
###Testing Requirements
63
+
## Testing Requirements
65
64
66
65
To maintain code quality and prevent regressions, all code changes must include comprehensive tests and verifiable end-to-end (E2E) evidence.
67
66
68
67
69
-
####Unit Tests
68
+
### Unit Tests
70
69
71
70
Please add or update unit tests for your change. Please include a summary of passed `pytest` results.
72
71
@@ -80,7 +79,7 @@ Requirements for unit tests:
80
79
- Free of external dependencies (use mocks or fixtures as needed).
81
80
-**Quality:** Aim for high readability and maintainability; include docstrings or comments for complex scenarios.
82
81
83
-
####Manual End-to-End (E2E) Tests
82
+
### Manual End-to-End (E2E) Tests
84
83
85
84
Manual E2E tests ensure integrated flows work as intended. Your tests should cover all scenarios. Sometimes, it's also good to ensure relevant functionality is not impacted.
86
85
@@ -97,23 +96,34 @@ Depending on your change:
97
96
- Include the command used and console output showing test results.
98
97
- Highlight sections of the log that directly relate to your change.
99
98
100
-
###Documentation
99
+
## Documentation
101
100
102
101
For any changes that impact user-facing documentation (guides, API reference, tutorials), please open a PR in the [adk-docs](https://github.com/google/adk-docs) repository to update relevant part before or alongside your code PR.
0 commit comments