• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

roundup-tracker / roundup / 25075727545 / 1
75%
master: 75%

Build:
DEFAULT BRANCH: master
Ran 28 Apr 2026 08:48PM UTC
Files 117
Run time 3s
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

28 Apr 2026 08:16PM UTC coverage: 74.686% (+0.004%) from 74.682%
25075727545.1

push

github

rouilj
chore(ruff):

hyperdb.py:

  sort imports

  collapse multiple:
       if x:
       else:
         if Y:
         else:
    to
       if x:
       elif y:
       else:

    One collapse included multiple nested levels.

  replace vars:
    id -> node_id (3 times) (shadows builtins)

    id -> item_id

    parameter name 'property' to 'property_' to match
      blobfiles::FileStorage like prototype methods.  (shadows
      builtins)

    p -> prop_name

  replace multiple set(generator) with {set comprehension}

  replace
      for k in X:
        ...(X[k])
    with
      for k, v in X.values():
         ...(v)

  remove redundant list from list(sorted(...))

  added FIXME 3.10 to uses of zip without strict=True. Can add strict
     when 3.10 is earliest supported version. (2 instances)

  replace "string with multiple words".split() into literal list of
    individual words.

  replace dict([(a,b) for x in y]) with dict comprehension.
    {a:b for x in y} (3 cases)

  replace for loop with list comprehension.

  replace "for X in d.keys()" with "for X in d"

  bytes != str -> bytes is not str (2 cases)

  whitespace fixes

19142 of 25630 relevant lines covered (74.69%)

4.39 hits per line

Source Files on job 25075727545.1
  • Tree
  • List 117
  • Changed 13
  • Source Changed 13
  • Coverage Changed 12
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 25075727545
  • e80ac8e9 on github
  • Prev Job for on master (#24970021618.1)
  • Next Job for on master (#25117017919.1)
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