SimpleCov 1.3 raises the minimum Ruby to 3.3, brings the coverage directives to ERB, Haml, and Slim templates,
teaches simplecov patch and simplecov uncovered to annotate CI hosts natively, and settles what the report says
about files and groups that hold nothing.
Highlights
- Ruby 3.2 is no longer supported. The minimum is Ruby 3.3, which bundles Prism, so the static coverage extractor stops probing for it and the emulation of 3.2's constant folding is gone.
# simplecov:disableand# simplecov:enablework inside ERB, Haml, and Slim templates measured withcover_views, in each language's own comment syntax or as Ruby comments on a code line.--annotate KINDturnssimplecov patchandsimplecov uncoveredinto inline CI annotations for GitHub, GitLab, reviewdog, Azure, TeamCity, and Buildkite, so one CI step can both annotate and gate.- Groups that match no files are omitted from the report instead of padding it at 100%, and the
railsprofile declares its groups alphabetically. cover_viewsis the only way to measure a template now: acoverglob that matches one warns and leaves it out, andignore: :eval_generatedno longer drops a template's real branches and methods.- A file with nothing to cover reports the same percentage in the file list as it does in the source view.
Upgrade notes
- The minimum supported Ruby is now 3.3. Ruby 3.2 reached end of life in March 2026. JRuby 10 remains supported for line coverage.
- A group that matched no files disappears from the HTML report,
coverage.json, and the history file, and a per-group minimum on it passes silently rather than complaining that the group does not exist. - The
railsprofile's group tabs come out in alphabetical order, so an existing project's tabs move. - A never-loaded file with no branches or methods reports 100% for those criteria rather than 0%, so a per-file branch or method threshold that failed such a file passes now. A file the report carries no branch or method table for at all is still unaccounted for, and keeps its 0%.
- A
coverglob matching.erb,.haml, or.slimwarns and drops those files from the report. Measure templates withcover_viewsinstead. coverage.jsonstays at schema 1.3, unchanged by this release.
Breaking Changes
- Dropped support for Ruby 3.2. The minimum supported Ruby is now 3.3 (
required_ruby_version >= 3.3), with JRuby 10 still supported and TruffleRuby exercised only by the nightly unstable build. Prism is bundled with every supported Ruby, so the static coverage extractor stops probing for it:StaticCoverageExtractor.available?and the empty-hash fallbacks for its absence are gone. So is the emulation of Ruby 3.2's constant folding, where parentheses were transparent for every literal and a folded dead arm's branches survived in the branch table.
Enhancements
# simplecov:disableand# simplecov:enablework inside ERB, Haml, and Slim templates measured withcover_views, in each language's own comment syntax (<%# simplecov:disable %>,-# simplecov:disable,/ simplecov:disable) or as Ruby comments on a code line. A template's directives were never found before: the comment scan tokenizes a file as Ruby, and in ERB%>opens a percent literal that swallowed every comment after the template's first tag, while Haml and Slim comments are not Ruby comments at all and a Slim- # simplecov:disableline even read as an inline directive that disabled only itself. The scan now reads only the Ruby a template holds, at the template's own lines, so a Devise app can disable theconfirmablelink it never renders instead of carrying it as uncovered. See #1295.- Groups that match no files are omitted from the report instead of appearing as 100% covered with nothing in them. Formatters,
coverage.json, and the history file all skip them, so therailsprofile'sChannels,Mailers, andViewstabs no longer pad the HTML report of an app without those directories, and a project can declare a group per directory it might have (Dir["app/*"].each { |dir| group File.basename(dir).capitalize, dir }) without checking each one for Ruby files first. Aminimum_coverage_by_groupthreshold on a group that matched nothing passes silently, as it did when the empty group reported 100%, rather than complaining that the group does not exist. See #1293. - The
railsprofile declares its groups in alphabetical order:Channels,Controllers,Helpers,Jobs,Libraries,Mailers,Models,Views. Group tabs render in declaration order, so the report of a Rails app lists them that way instead of in the order they accumulated over the years. Nothing else about the groups changes, and a project that declares its own groups is unaffected. simplecov patchandsimplecov uncoveredannotate CI hosts natively.--annotate KINDon both commands turns the answer into inline annotations in the host's own channel, one per contiguous missed range with project-relative paths (patchadds one per uncovered touched branch or method when the report measured them):githubemits::warningworkflow commands,gitlaba Code Quality report for thecodequalityartifact,rdjsonreviewdog's Diagnostic Format for any host reviewdog posts to,azure##vso[task.logissue]logging commands,teamcitycode inspection service messages, andbuildkitethe Markdown body forbuildkite-agent annotate.uncoveredpreviously offered onlygithub, and its annotations now name the chosen criterion the waypatch's do. Nothing else reaches stdout in that mode andpatch --minimumstill sets the exit status, so one CI step can annotate and gate. Documented under CI annotations in docs/CLI.md.
Bugfixes
- A file with no branches or no methods reports the same percentage everywhere. A file tracked but never loaded had its empty branch and method sets forced to 0% (#902), from a time when simulation recorded no tuples for such a file and an empty set really did mean "nobody knows". Simulation has synthesized those tuples statically for a while now, so an empty set is a fact about the file: it has no branches, or a directive skipped the ones it has. Such a file now reports 100% the way a loaded file with none always has, so the file list stops showing 0% beside a source view that says 100%, and a per-file branch or method minimum stops failing a file that has nothing to cover. A file carrying no table at all for the criterion is still unaccounted for, and 0% stands there. The HTML report's source view also takes each header percentage from the report rather than recomputing it from the fraction, so the two views cannot drift again. See #1296.
- A
coverglob that matches a template warns and leaves it out instead of simulating it. Simulation classifies lines as Ruby and parses for branches, so a swept-in template appeared with a comment counted as a missed line, an#idtag counted as never relevant, and no branches at all. The warning names the templates and points atcover_views, which compiles them and measures the real thing. - The deprecated
# :nocov:toggle works in a template's own comment syntax (<%# :nocov: %>,-# :nocov:,/ :nocov:) and emits its deprecation warning there. The matcher read raw lines and needed the line to begin with#, so those forms were silently ignored while the Ruby-comment form inside an ERB code tag happened to work. The matcher now reads the same extracted Ruby the directives do. ignore: :eval_generatedno longer drops a template's real branches and methods. The filter keeps a Coverage entry only when Prism finds a matching construct in the static source, which for a template measured withcover_viewsmeant parsing ERB, Haml, or Slim as Ruby. That usually fails and the entry is kept, but a template whose text happens to parse (a Haml or Slim#idtag reads as a Ruby comment, and so does an ERB text line starting with#) yielded a confident wrong parse, and the template's own conditionals vanished from branch coverage. Templates now skip the parse, since everything a template reports is eval-generated by construction and the filter has nothing to distinguish there.