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

nfb2021 / canvodpy / 24028931394
42%

Build:
DEFAULT BRANCH: main
Ran 06 Apr 2026 10:49AM UTC
Jobs 1
Files 183
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

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

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.

0 of 5 new or added lines in 2 files covered. (0.0%)

7800 of 18324 relevant lines covered (42.57%)

0.43 hits per line

Uncovered Changes

Lines Coverage ∆ File
3
7.58
0.0% canvodpy/src/canvodpy/orchestrator/processor.py
2
91.39
0.0% canvodpy/src/canvodpy/logging/logging_config.py
Jobs
ID Job ID Ran Files Coverage
1 24028931394.1 06 Apr 2026 10:49AM UTC 183
42.57
GitHub Action Run
Source Files on build 24028931394
  • Tree
  • List 183
  • Changed 2
  • Source Changed 2
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • Github Actions Build #24028931394
  • d184c64c on github
  • Prev Build on main (#24027450049)
  • Next Build on main (#24032777865)
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