docs: revert benchmark changes to make PR atomic (CHANGELOG-only)
CI / lint (pull_request) Successful in 1m2s
CI / quality (pull_request) Successful in 1m18s
CI / typecheck (pull_request) Successful in 1m32s
CI / security (pull_request) Successful in 2m6s
CI / build (pull_request) Successful in 31s
CI / helm (pull_request) Successful in 28s
CI / integration_tests (pull_request) Successful in 3m2s
CI / push-validation (pull_request) Successful in 25s
CI / e2e_tests (pull_request) Successful in 3m49s
CI / unit_tests (pull_request) Successful in 8m17s
CI / docker (pull_request) Successful in 1m32s
CI / benchmark-publish (pull_request) Has been skipped
CI / coverage (pull_request) Successful in 10m58s
CI / benchmark-regression (pull_request) Failing after 1m3s
CI / build (push) Waiting to run
CI / docker (push) Blocked by required conditions
CI / lint (push) Waiting to run
CI / typecheck (push) Waiting to run
CI / security (push) Waiting to run
CI / quality (push) Waiting to run
CI / unit_tests (push) Waiting to run
CI / integration_tests (push) Waiting to run
CI / e2e_tests (push) Waiting to run
CI / coverage (push) Blocked by required conditions
CI / helm (push) Waiting to run
CI / push-validation (push) Waiting to run
CI / status-check (push) Blocked by required conditions
CI / status-check (pull_request) Successful in 3s

Remove benchmarks/a2a_facade_bench.py changes (operation->method rename and
self.current_version caching) from this PR. These benchmark changes are
unrelated to the CHANGELOG documentation update and violate the atomicity
requirement per CONTRIBUTING.md. They will be submitted in a separate PR.
This commit was merged in pull request #10929.
This commit is contained in:
2026-05-03 01:23:38 +00:00
committed by Forgejo
parent c790ae0647
commit b41efe42f4
+2 -3
View File
@@ -76,13 +76,12 @@ class VersionNegotiationSuite:
def setup(self) -> None:
self.negotiator = A2aVersionNegotiator()
self.current_version = self.negotiator.get_current()
def time_negotiate_supported(self) -> None:
self.negotiator.negotiate(self.current_version)
self.negotiator.negotiate("1.0")
def time_is_supported_true(self) -> None:
self.negotiator.is_supported(self.current_version)
self.negotiator.is_supported("1.0")
def time_is_supported_false(self) -> None:
self.negotiator.is_supported("99.0")