We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e29a7d commit d1e2ec2Copy full SHA for d1e2ec2
test/testrunner.py
@@ -304,6 +304,17 @@ def main():
304
)
305
build_context = get_build_context()
306
307
+ # Skip non-sanity/security test suites for base or vllm images in MAINLINE context
308
+ if (
309
+ build_context == "MAINLINE"
310
+ and all("base" in image_uri or "vllm" in image_uri for image_uri in all_image_list)
311
+ and test_type not in {"functionality_sanity", "security_sanity"}
312
+ ):
313
+ LOGGER.info(
314
+ f"NOTE: {specific_test_type} tests not supported on base or vllm images. Skipping..."
315
+ )
316
+ return
317
+
318
# quick_checks tests don't have images in it. Using a placeholder here for jobs like that
319
try:
320
framework, version = get_framework_and_version_from_tag(all_image_list[0])
0 commit comments