_collect_rows! (src/testset.jl:1290) skips ignored subtrees entirely. _ntests / _nfail / _nbroken (:574-583) deliberately do not.
The page-level _summary_line(root) passed to _enter_page! (:1446) therefore counts tests that have no row in the table beneath it, and there is no "N ignored" note to explain the gap.
With the documented example -- src/testset.jl:139-143 shows @pinaxignore on an Aqua block -- the header total and the sum of the table simply disagree.
Fix
Either exclude ignored subtrees from both, or count them in both and render an explicit "N ignored" line so the difference is stated rather than left for the reader to notice.
_collect_rows!(src/testset.jl:1290) skips ignored subtrees entirely._ntests/_nfail/_nbroken(:574-583) deliberately do not.The page-level
_summary_line(root)passed to_enter_page!(:1446) therefore counts tests that have no row in the table beneath it, and there is no "N ignored" note to explain the gap.With the documented example --
src/testset.jl:139-143shows@pinaxignoreon an Aqua block -- the header total and the sum of the table simply disagree.Fix
Either exclude ignored subtrees from both, or count them in both and render an explicit "N ignored" line so the difference is stated rather than left for the reader to notice.