testing: fix tests when run under -v or -vv#9768
Conversation
Regressed in fac8f28, didn't notice since we don't run tests in CI with `-v`.
for more information, see https://pre-commit.ci
|
@nicoddemus the tests do give me some pause. One of the tests looks a bit like this (modified a bit): class X1: pass
class X2: pass
cls1 = X1
cls2 = X2
def test_it():
assert cls1 == cls2before fac8f28 the output with After (current main), it is Now it's not printed anywhere what the |
|
I'm going to merge this since I'm doing a point release and I figure just making the tests work in the current state is uncontroversial - we can continue the discussion though. |
Yeah that seems bad. While the |
|
Thanks for tackling this as well. 👍 |
Regressed in fac8f28, didn't notice
since we don't run tests in CI with
-v.