test: fix config_schemas_test and runtime_impl_test to support site s…#823
Merged
Conversation
…pecific (e.g. google) import. * Encapsulate Python binary test helpers to ensure we have have all dependencies mapped correctly into the runfiles. This becomes more important for config_test, which is not handled in this patch, where we need to also include external dependencies (jinja2), hence the addition of an unused external_deps attribute in envoy_py_test_binary. * Make sure the runtime test filesystem is writable before symlinking in it.
|
|
||
| envoy_py_test_binary( | ||
| name = "generate_test_data", | ||
| srcs = [ |
Member
There was a problem hiding this comment.
I'm not positive, but I'm guessing that unless you export the other python files in the directory, the actual schema tests in the other files won't run. We might want to put some expected number of loaded test files in the test main loop to catch this (like I recently did for the example config tests).
mattklein123
approved these changes
Apr 24, 2017
mathetake
added a commit
that referenced
this pull request
Mar 3, 2026
**Description** Since the next EG v1.5 will be our target version that AIGW v0.3 will be based on, there's no reason to keep it at the moment. This is mainly to unblock the incoming feature patches that will rely on v1.5 feature, such as #823. Signed-off-by: Takeshi Yoneda <t.y.mathetake@gmail.com>
mathetake
pushed a commit
that referenced
this pull request
Mar 3, 2026
**Description** This PR addes support for inferencePool, which allows Envoy AI Gateway to integrate with ANY endpoint picker who is supported the inferencePool. By integrating with the Endpoint Picker like Gateway API Inference Extenstion or the non-GIE EPP, it can expand Envoy AI Gateway`s abilities to advanced scheduleing algorithm to optimize inference. **Related Issues/PRs (if applicable)** Fixes: envoyproxy/ai-gateway#423 Fixes envoyproxy/ai-gateway#604 Fixes: envoyproxy/ai-gateway#648 Some follow-up: envoyproxy/ai-gateway#911 --------- Signed-off-by: bitliu <bitliu@tencent.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…pecific (e.g. google) import.
Encapsulate Python binary test helpers to ensure we have have all dependencies mapped
correctly into the runfiles. This becomes more important for config_test, which is not handled
in this patch, where we need to also include external dependencies (jinja2), hence the addition
of an unused external_deps attribute in envoy_py_test_binary.
Make sure the runtime test filesystem is writable before symlinking in it.