From f4772e7f4c58d72eb8e03e729c81a2e0a3432dfc Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Wed, 18 Mar 2026 00:10:37 +0100 Subject: [PATCH] ci: Exclude micro benchmarks from metrics CI Skip micro_ prefixed tests in the metrics CI workflow to avoid dashboard pollution. They can still be run on demand via --test-filter micro_. Signed-off-by: Anatol Belski --- .github/workflows/integration-metrics.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-metrics.yaml b/.github/workflows/integration-metrics.yaml index 952e938fd..4e66f4b61 100644 --- a/.github/workflows/integration-metrics.yaml +++ b/.github/workflows/integration-metrics.yaml @@ -17,6 +17,6 @@ jobs: fetch-depth: 0 - name: Run metrics tests timeout-minutes: 60 - run: scripts/dev_cli.sh tests --metrics -- -- --report-file /root/workloads/metrics.json + run: scripts/dev_cli.sh tests --metrics -- --test-exclude micro_ -- --report-file /root/workloads/metrics.json - name: Upload metrics report run: 'curl -X PUT https://ch-metrics.azurewebsites.net/api/publishmetrics -H "x-functions-key: $METRICS_PUBLISH_KEY" -T ~/workloads/metrics.json'