zed-industries/zed · error · RuntimeError

verifier produced no results (exit {completed.returncode}):

Error message

verifier produced no results (exit {completed.returncode}): {completed.stderr.strip()[:500]}

What it means

Error "verifier produced no results (exit {completed.returncode}): {completed.stderr.strip()[:500]}" thrown in zed-industries/zed.

Source

Thrown at crates/eval_cli/zed_eval/rejudge.py:232

    LOGS_VERIFIER_DIR.mkdir(parents=True, exist_ok=True)
    _stage_tests_dir(tests_dir)

    env = os.environ.copy()
    env.update(verifier_environment(judge_model, port))
    script = tests_dir / (RF_VERIFIER if part == PART_RF else QNA_VERIFIER)
    results_path = RF_RESULTS_PATH if part == PART_RF else QNA_RESULTS_PATH
    if results_path.exists():
        results_path.unlink()

    completed = subprocess.run(
        [sys.executable, str(script)],
        env=env,
        capture_output=True,
        text=True,
    )
    results = load_json(results_path)
    if not isinstance(results, dict):
        raise RuntimeError(
            f"verifier produced no results (exit {completed.returncode}): "
            f"{completed.stderr.strip()[:500]}"
        )
    return results


def rejudge_trial(
    trial_dir: Path,
    tasks_root: Path,
    judge: config.JudgeConfig,
    judge_model: str,
    port: int,
) -> dict[str, Any]:
    """Re-grade one trial in place (the trial dir is a copy in the derived run).

    Returns a per-trial record; on any recoverable problem it returns
    `{"ok": False, "error": ...}` so one bad trial can't sink the whole job.
    """

View on GitHub (pinned to bc538def45)

When it happens

Trigger: Thrown at crates/eval_cli/zed_eval/rejudge.py:232 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of zed-industries/zed@bc538def45 (2026-08-16). Data as JSON: /api/errors/49d4f07873107f06. Report an issue: GitHub.