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

nfb2021 / canvodpy / 24028931394 / 1
42%
main: 42%

Build:
DEFAULT BRANCH: main
Ran 06 Apr 2026 10:49AM UTC
Files 183
Run time 4s
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

06 Apr 2026 10:47AM UTC coverage: 42.567%. Remained the same
24028931394.1

push

github

nfb2021
fix(except): replace Python 2 bare-except syntax with Python 3 tuple form

  Two files contained `except A, B:` which is Python 2 syntax (catches A,
  binds to B) — a silent semantic bug in Python 3. Fixed in:

  - logging_config.py (×2): collapsed `except FileNotFoundError, Exception:`
    to `except Exception:` (ruff 0.15.8 strips parens from 2-item tuples,
    so the broad catch is the cleanest ruff-stable form here)
  - processor.py (×3): `except OSError, RuntimeError, ValueError:` →
    `except (OSError, RuntimeError, ValueError):  # fmt: skip`
    (fmt: skip required — ruff 0.15.8 actively reverts parenthesised
    multi-exception tuples back to bare-comma form)

  Fixes ruff E0001 / syntax errors that would surface on Python 3.14.

7800 of 18324 relevant lines covered (42.57%)

0.43 hits per line

Source Files on job 24028931394.1
  • Tree
  • List 183
  • Changed 2
  • Source Changed 2
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 24028931394
  • d184c64c on github
  • Prev Job for on main (#24027450049.1)
  • Next Job for on main (#24032777865.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