rtk-ai/rtk

xfailed tests reported as '1 failed' in summary output

Open

#672 创建于 2026年3月18日

在 GitHub 查看
 (3 评论) (0 反应) (0 负责人)Rust (2,914 fork)batch import
area:testingbugeffort-smallfilter-qualitygood first issuepriority:low

仓库指标

Star
 (48,085 star)
PR 合并指标
 (平均合并 11天 1小时) (30 天内合并 45 个 PR)

描述

Description

When running pytest through the rtk proxy, tests marked with xfail (expected failure) are reported as "1 failed" in the rtk summary line, even though pytest itself reports them as xfailed (which is a pass, not a failure).

Reproduction

# Direct pytest output (correct):
3711 passed, 8 deselected, 1 xfailed in 10.01s

# rtk proxy summary (incorrect):
Pytest: 3711 passed, 1 failed

Expected behavior

The rtk summary should either:

  • Report xfailed tests as passed (since they are expected failures), or
  • Show them separately as 1 xfailed (matching pytest's own reporting)

Environment

  • rtk version: latest
  • pytest with @pytest.mark.xfail decorated tests

贡献者指南