• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In
Info updated!

Tatsh / deltona
100%

Build:
DEFAULT BRANCH: master
Repo Added 13 May 2025 10:05PM UTC
Token 5UPWFrrkboFlivYO9aR3yMSCvyKLe7JrS regen
Build 314 Last
Files 27
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

LAST BUILD ON BRANCH master
branch: SELECT
CHANGE BRANCH
x
Sync Branches
  • No branch selected
  • dependabot/github_actions/actions/cache-5
  • dependabot/github_actions/actions/checkout-6
  • dependabot/github_actions/actions/upload-artifact-5
  • dependabot/github_actions/actions/upload-artifact-6
  • dependabot/npm_and_yarn/cspell-9.0.2
  • dependabot/npm_and_yarn/cspell-9.1.1
  • dependabot/npm_and_yarn/cspell-9.1.2
  • dependabot/npm_and_yarn/cspell-9.1.3
  • dependabot/npm_and_yarn/cspell-9.1.5
  • dependabot/npm_and_yarn/cspell-9.2.0
  • dependabot/npm_and_yarn/cspell-9.2.1
  • dependabot/npm_and_yarn/cspell-9.2.2
  • dependabot/npm_and_yarn/cspell-9.3.0
  • dependabot/npm_and_yarn/cspell-9.3.2
  • dependabot/npm_and_yarn/cspell-9.4.0
  • dependabot/npm_and_yarn/cspell-9.6.0
  • dependabot/npm_and_yarn/cspell-9.6.2
  • dependabot/npm_and_yarn/cspell-9.6.3
  • dependabot/npm_and_yarn/cspell-9.6.4
  • dependabot/npm_and_yarn/markdownlint-cli2-0.18.1
  • dependabot/npm_and_yarn/markdownlint-cli2-0.19.0
  • dependabot/npm_and_yarn/markdownlint-cli2-0.19.1
  • dependabot/npm_and_yarn/markdownlint-cli2-0.20.0
  • dependabot/npm_and_yarn/markdownlint-cli2-0.21.0
  • dependabot/npm_and_yarn/npm_and_yarn-2efe533b74
  • dependabot/npm_and_yarn/npm_and_yarn-4f2e9573ab
  • dependabot/npm_and_yarn/npm_and_yarn-b2309f4355
  • dependabot/npm_and_yarn/npm_and_yarn-bdc76aff73
  • dependabot/npm_and_yarn/npm_and_yarn-d524a1f714
  • dependabot/npm_and_yarn/npm_and_yarn-e5a595f223
  • dependabot/npm_and_yarn/prettier-3.6.0
  • dependabot/npm_and_yarn/prettier-3.6.2
  • dependabot/npm_and_yarn/prettier-3.7.3
  • dependabot/npm_and_yarn/prettier-3.7.4
  • dependabot/npm_and_yarn/prettier-3.8.0
  • dependabot/npm_and_yarn/prettier-3.8.1
  • dependabot/npm_and_yarn/prettier-plugin-sort-json-4.2.0
  • dependabot/npm_and_yarn/prettier-plugin-toml-2.0.6
  • dependabot/npm_and_yarn/prettier/plugin-xml-3.4.2
  • dependabot/npm_and_yarn/pyright-1.1.401
  • dependabot/npm_and_yarn/pyright-1.1.402
  • dependabot/npm_and_yarn/pyright-1.1.403
  • dependabot/npm_and_yarn/pyright-1.1.404
  • dependabot/npm_and_yarn/pyright-1.1.405
  • dependabot/npm_and_yarn/pyright-1.1.406
  • dependabot/npm_and_yarn/pyright-1.1.407
  • dependabot/npm_and_yarn/pyright-1.1.408
  • dependabot/uv/pygobject-3.56.2
  • dependabot/uv/ruff-0.15.7
  • dependabot/uv/ruff-0.15.8
  • dependabot/uv/sphinx-9.1.0
  • dependabot/uv/types-requests-2.33.0.20260327
  • dependabot/uv/types-yt-dlp-2026.3.17.20260318
  • dependabot/uv/uv-6ba9ca5f64
  • dependabot/uv/uv-aa7cb66ac2
  • dependabot/uv/yt-dlp-2026.3.17
  • master

28 Apr 2026 10:10PM UTC coverage: 100.0%. Remained the same
25080319989

push

github

Tatsh
project: align with new pydbus-stubs surface

The newer `pydbus-stubs` (now allowed past the global
`exclude-newer = "1 week"` window via the matching
`tool.uv.exclude-newer-package` entry) makes `pydbus.Bus` generic and
narrows D-Bus proxy method attributes from "any callable" to plain
attributes whose call signature can only be asserted at the use
site. Update the calling code accordingly:

- `_get_pydbus_system_bus_callable` now returns
  `Callable[[], Bus[Any]]` to match the new generic alias.
- D-Bus proxy method invocations in
  `inhibit_notifications`, `uninhibit_notifications`,
  `get_inhibitor`, `pan_connect`, and `pan_disconnect` are wrapped in
  `cast('Callable[..., RetType]', proxy.Method)(...)` so the static
  contract matches the runtime D-Bus signature.
- `find_bluetooth_device_info_by_name` materialises the per-device
  attribute map with `dict(...)` to satisfy its `dict[str, Any]`
  return type, since the new stubs no longer report the inner mapping
  as a plain `dict`. The accompanying `ty` overload-resolution noise
  is silenced with a targeted ignore.

Pure typing change; runtime behaviour is unchanged and existing
tests still pass.

Signed-off-by: Andrew Udvare <audvare@gmail.com>

396 of 396 branches covered (100.0%)

Branch coverage included in aggregate %.

6 of 6 new or added lines in 1 file covered. (100.0%)

3328 of 3328 relevant lines covered (100.0%)

5.0 hits per line

Relevant lines Covered
Build:
Build:
3328 RELEVANT LINES 3328 COVERED LINES
5.0 HITS PER LINE
Source Files on master
  • Tree
  • List 27
  • Changed 2
  • Source Changed 2
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
25080319989 master project: align with new pydbus-stubs surface The newer `pydbus-stubs` (now allowed past the global `exclude-newer = "1 week"` window via the matching `tool.uv.exclude-newer-package` entry) makes `pydbus.Bus` generic and narrows D-Bus proxy method... push 28 Apr 2026 10:11PM UTC Tatsh github
100.0
25070723515 master tests/test_git: assert get_repo calls as a set, not a list `_merge_bot_pull_requests` resolves explicit repo names with `asyncio.gather(*(call(gh.get_repo, n) ...))`, which dispatches the underlying `get_repo` calls concurrently through an `anyio... push 28 Apr 2026 06:32PM UTC Tatsh github
100.0
25063587632 master project: tighten read-only collection parameters to abstract types Three internal helpers declared their read-only collection inputs as concrete `dict`/`list`, advertising mutation rights they never used. Switch the annotations to the matching ab... push 28 Apr 2026 04:02PM UTC Tatsh github
100.0
25063586033 master project: tighten read-only collection parameters to abstract types Three internal helpers declared their read-only collection inputs as concrete `dict`/`list`, advertising mutation rights they never used. Switch the annotations to the matching ab... push 28 Apr 2026 03:59PM UTC Tatsh github
100.0
25021808050 master git: add merge-pre-commit-prs and refactor bot merge core Add a new `merge-pre-commit-prs` CLI command for merging PRs opened by `pre-commit-ci[bot]`. It mirrors `merge-dependabot-prs` exactly: same options (`--base-url`, `--delay`, `--concurrenc... push 27 Apr 2026 10:00PM UTC Tatsh github
100.0
24950026848 master uv: bump gitpython Signed-off-by: Andrew Udvare <audvare@gmail.com> push 26 Apr 2026 06:22AM UTC Tatsh github
100.0
24947903156 master bump: v0.2.0 → v0.2.1 Signed-off-by: Andrew Udvare <audvare@gmail.com> push 26 Apr 2026 04:19AM UTC Tatsh github
100.0
24947783792 master refactor: preserve commas in single-element LHS tuple unpacks When classifying an opening `(`, `_prev_sig` walked backwards across `NEWLINE` tokens and could reach a `NAME` from the previous logical statement (for example the `int` in `count: int... push 26 Apr 2026 04:04AM UTC Tatsh github
100.0
24946632770 master cruft: update Signed-off-by: Andrew Udvare <audvare@gmail.com> push 26 Apr 2026 02:50AM UTC Tatsh github
100.0
24946049712 master cruft: update Signed-off-by: Andrew Udvare <audvare@gmail.com> push 26 Apr 2026 02:14AM UTC Tatsh github
100.0
See All Builds (314)

Badge your Repo: deltona

We detected this repo isn’t badged! Grab the embed code to the right, add it to your repo to show off your code coverage, and when the badge is live hit the refresh button to remove this message.

Could not find badge in README.

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

Refresh
  • Settings
  • Repo on GitHub
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