Skip to content

Bump MishaKav/pytest-coverage-comment from 1.8.0 to 1.11.0 - #183

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/MishaKav/pytest-coverage-comment-1.11.0
Closed

Bump MishaKav/pytest-coverage-comment from 1.8.0 to 1.11.0#183
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/MishaKav/pytest-coverage-comment-1.11.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 6, 2026

Copy link
Copy Markdown

Bumps MishaKav/pytest-coverage-comment from 1.8.0 to 1.11.0.

Release notes

Sourced from MishaKav/pytest-coverage-comment's releases.

v1.11.0

What's Changed

  • add show-failed-tests input that lists failed tests (up to max-failed-tests) in the comment as a collapsible block with the test name linked to its file, a short failure reason and the pytest output
  • add max-failed-tests input to cap the number of shown failed tests (30 by default, in total across all junit files, shared with multiple-files mode)
  • add failedTestsHtml output with the rendered block, empty when the option is disabled or all tests pass

Test Results

Tests Skipped Failures Errors Time
4 0 💤 4 ❌ 0 🔥 0.122s ⏱️
def test_wrong_title():
        # genuine failing assertion with a string diff
        post = get_post(1)
>       assert post["title"] == "my first post"
E       AssertionError: assert 'first post' == 'my first post'
E
E         - my first post
E         ? ---
E         + first post
def test_fetch_latest_post_times_out():
        # genuine timeout raised by the module under test
>       post = fetch_latest_post(timeout=0.03)
timeout = 0.03
def fetch_latest_post(timeout=FETCH_TIMEOUT_SECONDS):
    """Simulate polling a slow posts API until the timeout expires."""
    deadline = time.monotonic() + timeout
    while time.monotonic() < deadline:
        time.sleep(0.01)

>       raise TimeoutError(f"posts API d…

... (truncated)

Changelog

Sourced from MishaKav/pytest-coverage-comment's changelog.

Pytest Coverage Comment 1.11.0

Release Date: 2026-08-02

Changes

  • add show-failed-tests input that lists failed tests (up to max-failed-tests) in the comment as a collapsible block with the test name linked to its file, a short failure reason and the pytest output (#293), requested in #26
  • add max-failed-tests input to cap the number of shown failed tests (30 by default, in total across all junit files, shared with multiple-files mode) (#293)
  • add failedTestsHtml output with the rendered block, empty when the option is disabled or all tests pass (#293)

Pytest Coverage Comment 1.10.1

Release Date: 2026-08-01

Changes

  • bump dev dependencies: @types/node 26.1.2, @vitest/coverage-v8 4.1.10, vitest 4.1.10, eslint 10.8.0, typescript-eslint 8.65.0, prettier 3.9.6 (#290)
  • bump brace-expansion from 5.0.6 to 5.0.8 (#287)
  • bump schneegans/dynamic-badges-action from 1.8.0 to 1.9.0 in workflows (#289)

Pytest Coverage Comment 1.10.0

Release Date: 2026-07-05

Changes

  • add support for parsing the JSON coverage report from coverage json via the new pytest-json-coverage-path input, including branch coverage and partial-branch arrows (line->target, line->exit) that match coverage report -m (#286)

Pytest Coverage Comment 1.9.0

Release Date: 2026-07-04

Changes

  • fix the Coverage percentage when branch coverage is enabled — it now combines statement and branch coverage and rounds the same way coverage report does, instead of showing 100% when branches are only partially covered (#284), thanks to @​mschoettle for contribution
Commits
  • 09c28b6 Add failed tests report to JUnit output (show-failed-tests) (#293)
  • 96fbda6 chore: release v1.10.1 (#292)
  • 4f3ea85 Bump brace-expansion from 5.0.6 to 5.0.8 (#287)
  • 62e8522 Bump the npm-development group with 6 updates (#290)
  • 481dcf4 Bump schneegans/dynamic-badges-action from 1.8.0 to 1.9.0 (#289)
  • fd9adbd feat: add coverage.py JSON report support (pytest-json-coverage-path) (#286)
  • 4a4889e fix: correct coverage percentage when branch coverage is enabled (#285)
  • a15368f Bump the npm-development group with 3 updates (#281)
  • fc9dc0f Bump actions/cache from 5 to 6 (#280)
  • 839593b Bump actions/checkout from 6 to 7 (#279)
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [MishaKav/pytest-coverage-comment](https://github.com/mishakav/pytest-coverage-comment) from 1.8.0 to 1.11.0.
- [Release notes](https://github.com/mishakav/pytest-coverage-comment/releases)
- [Changelog](https://github.com/MishaKav/pytest-coverage-comment/blob/main/CHANGELOG.md)
- [Commits](MishaKav/pytest-coverage-comment@v1.8.0...v1.11.0)

---
updated-dependencies:
- dependency-name: MishaKav/pytest-coverage-comment
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 6, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 27, 2026

Copy link
Copy Markdown
Author

Superseded by #189.

@dependabot dependabot Bot closed this Aug 27, 2026
@dependabot
dependabot Bot deleted the dependabot/github_actions/MishaKav/pytest-coverage-comment-1.11.0 branch August 27, 2026 04:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants