hachyderm.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
Hachyderm is a safe space, LGBTQIA+ and BLM, primarily comprised of tech industry professionals world wide. Note that many non-user account types have restrictions - please see our About page.

Administered by:

Server stats:

9.4K
active users

Coverage.py

If you measure branch coverage and have a spare moment: can you install this version of coverage and tell me if you get an assert when creating the report?

python3 -m pip install git+github.com/nedbat/coveragepy@6

Thanks!

@coveragepy Looks like mastodon ate your install instruction a little bit

I'm not sure if using backticks will help (if you use markdown rendering), but I think it's python3 -m pip install git+https://github.com/nedbat/coveragepy@67f1440e0a384000e337

@coveragepy It seems to work OK here:

$ make coverage 
...
Name Stmts Miss Branch BrPart Cover
TOTAL 764 0 288 0 100%
$ pip freeze | grep coverage
coverage @ git+https://github.com/nedbat/coveragepy@67f1440e0a384000e337ab54bd9cc01804aec201
$ python --version
Python 3.11.2

@coveragepy this leads me to wonder why this code has 100% branch coverage:

if not len("abc"): raise RuntimeError("impossible")
$ python -mcoverage run --branch impossible.py ; python -mcoverage report
Name Stmts Miss Branch BrPart Cover
-------------------------------------------------
impossible.py 2 0 0 0 100%
-------------------------------------------------
TOTAL 2 0 0 0 100%

The branch (from line 1 to line 1!!) is never taken.

Of course, most code I write is formatted by black or ruff to put the body of an if statement on a separate line. If this is done, the missing branch coverage (now from line 1 to line 2) is detected.

@stylus Coverage is based on line numbers, even when measuring branches. It can't report about a branch from 1 to 1.