Comment on 3 percent of Python codebases we checked had silently failing unit testsparentComments−chriswarbo4yTheir testing system depends on tests printing "OK" after every test.Oof. If they'd instead put "ok" before every test, they might have been accidentally compatible with TAP! https://testanything.org−rightbyte4yI think relying on stout is kinda fine. I do tests with TCL/Expect like that.It is nice to not have to depend on the language runtime to do the test.
Comments
Oof. If they'd instead put "ok" before every test, they might have been accidentally compatible with TAP! https://testanything.org
I think relying on stout is kinda fine. I do tests with TCL/Expect like that.
It is nice to not have to depend on the language runtime to do the test.