Skip to content

Qualflare for Azure DevOps

Qualflare reads the test results your Azure DevOps pipeline already produces — no test rewrites, no new runner. Upload them with the zero-config CLI and get AI failure clustering, flaky-test detection, and per-launch risk on top.

Add it in one step

Add a script step with condition: always() after your test step. In azure-pipelines.yml:

- script: |
    qf login ci "$QF_TOKEN" --force
    qf ci collect test-results/*.xml
  displayName: Upload results to Qualflare
  condition: always()
  env:
    QF_TOKEN: $(QF_TOKEN)

Add QF_TOKEN as a secret pipeline variable (Edit → Variables, lock enabled); secret variables must be mapped in via env: as shown. Qualflare auto-detects branch and commit from Azure’s BUILD_* variables.

Full setup (install, tokens, flags) is in the CI/CD guide. The collect command auto-detects your result format across 23+ frameworks.

What you get

  • AI failure clustering — group failures by root cause across runs, not one red build at a time.
  • Flaky-test detection — score each test’s flakiness from history, so intermittent failures surface.
  • Per-launch release risk — a structured report and risk score for every pipeline run.
  • Trends over time — pass rates, stability, and flaky frequency, across branches and environments.

Connect Azure DevOps in minutes

Upload one run — free to start, no test rewrites.

Start free with Qualflare

More: all integrations · framework reporting guides · flaky test detection.