DKDenys Kravchenkoindkravchenko.hashnode.dev·Jul 20, 2022 · 3 min readValidate python code style of pull request lines onlyGood code base style is the part of non-functional project's quality. Style checks are usually performed in pull request (PR) publishing and reviewing processes. However, IDE or regular CLI tools shows style issues for whole file(s), without differen...00
DKDenys Kravchenkoindkravchenko.hashnode.dev·May 27, 2022 · 4 min readHow to debug pytest test cases without code modifyingEverybody in python knows the power of import pdb;pdb.set_trace() and breakpoint(). Alas, in many cases, it is not convenient to modify the source: project could be redeployed and your lines are gone, modified source requires additional efforts for...00