• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In
Warning: This build has drifted.
The coverage report for this pull request build may be inaccurate because its base commit is no longer the HEAD of its target branch.
This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.

    • Learn more: For more information on this, see Tracking coverage changes for pull request builds.
    • Fix now: For a quick fix, rebase this PR at GitHub. Your next report should be accurate.
    • Prevent going forward: To avoid this issue with future PRs, see these Recommended CI Configurations.
New Repo Setting:
INCLUDE COVERAGE % WITH WARNINGS ABOUT DRIFTED BUILDS?

Enabling this setting will include a (potentially inaccurate) coverage % with warning messages in status updates for drifted builds.

Adjust setting

playwright-community / playwright-go / 28143967425
79%
main: 79%

Build:
Build:
LAST BUILD BRANCH: roll/v1.61.1
DEFAULT BRANCH: main
Ran 25 Jun 2026 03:10AM UTC
Jobs 9
Files 58
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

25 Jun 2026 03:01AM UTC coverage: 78.499% (-0.002%) from 78.501%
28143967425

Pull #602

github

mxschmitt
fix: prevent jsonPipe deadlock that hung remote connections

The remote-connection transport (jsonPipe) delivered incoming messages into
a bounded channel (buffer 10) from the outer connection's dispatch goroutine.
When more than 10 messages queued before the inner connection drained them,
that blocking send stalled the dispatch goroutine — which is also the only
goroutine that delivers replies. Any in-flight Send() awaiting a reply then
blocked forever.

This surfaced as a flaky hang in TestShouldUploadAFolderRemote: streaming
files to a remote server produces a burst of write/close responses plus async
page events, occasionally exceeding the buffer and deadlocking until the test
timeout. Reproduced deterministically by shrinking the buffer to 1; goroutine
dump showed the dispatch goroutine blocked on 'chan send' at jsonPipe while the
test goroutine blocked on 'chan receive' in jsonPipe.Send.

Replace the bounded channel with an unbounded, order-preserving queue drained
by Poll(), so the dispatch goroutine never blocks. Add unit tests covering the
non-blocking guarantee, ordering, blocking Poll, close, and drain-before-close.
Pull Request #602: fix: prevent jsonPipe deadlock that hung remote connections

33 of 39 new or added lines in 1 file covered. (84.62%)

10 existing lines in 1 file now uncovered.

7948 of 10125 relevant lines covered (78.5%)

6580.54 hits per line

Uncovered Changes

Lines Coverage ∆ File
6
77.63
0.08% jsonPipe.go

Coverage Regressions

Lines Coverage ∆ File
10
77.63
0.08% jsonPipe.go
Jobs
ID Job ID Ran Files Coverage
1 macos-latest-webkit - 28143967425.1 25 Jun 2026 03:10AM UTC 58
76.21
GitHub Action Run
2 ubuntu-latest-webkit - 28143967425.2 25 Jun 2026 03:12AM UTC 58
76.74
GitHub Action Run
3 windows-latest-firefox - 28143967425.3 25 Jun 2026 03:13AM UTC 58
76.85
GitHub Action Run
4 windows-latest-chromium - 28143967425.4 25 Jun 2026 03:20AM UTC 58
78.24
GitHub Action Run
5 macos-latest-firefox - 28143967425.5 25 Jun 2026 03:27AM UTC 58
76.94
GitHub Action Run
6 ubuntu-latest-chromium - 28143967425.6 25 Jun 2026 03:17AM UTC 58
78.34
GitHub Action Run
7 macos-latest-chromium - 28143967425.7 25 Jun 2026 03:23AM UTC 58
78.33
GitHub Action Run
8 windows-latest-webkit - 28143967425.8 25 Jun 2026 03:12AM UTC 58
76.66
GitHub Action Run
9 ubuntu-latest-firefox - 28143967425.9 25 Jun 2026 03:20AM UTC 58
76.92
GitHub Action Run
Source Files on build 28143967425
  • Tree
  • List 58
  • Changed 17
  • Source Changed 0
  • Coverage Changed 17
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • Pull Request #602
  • PR Base - main (#28136695452)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc