1 parent bf024cd commit 1a79234Copy full SHA for 1a79234
2 files changed
tests/platforms/cuda.yaml
@@ -77,5 +77,7 @@ a100:
77
include: "*"
78
# Exclude patterns: empty list or list paths to exclude
79
exclude: []
80
+
81
benchmark:
- smoke: ["throughput", "latency", "serve"]
82
+ enabled: true
83
+ smoke: ["throughput", "latency", "serve"]
tests/run.py
@@ -338,6 +338,8 @@ def _discover_e2e_tests(self) -> list[TestCase]:
338
def _discover_benchmark_tests(self) -> list[TestCase]:
339
"""Benchmark smoke tests selected by platform YAML."""
340
benchmark = self.config.get_benchmark_tests()
341
+ if not benchmark.get("enabled", False):
342
+ return []
343
selected_smoke = benchmark.get("smoke", [])
344
345
if not selected_smoke:
0 commit comments