Saturday, June 6, 2020

Talk Python to Me: #267 15 amazing pytest plugins

Do you write tests for your code? You probably should. And most of the time, pytest is the industry standard these days. But pytest can be much more than what you get from just installing it as a tool. <br/> <br/> There are many amazing plugins that improve pytest in many aspects. That's why I invited Brian Okken to the show to tell us about his favorites. Listen in and your Python testing will be faster, stronger, and more beautiful!<br/> <br/> <strong>Links from the show</strong><br/> <br/> <div><b>Brian Okken</b>: <a href="https://twitter.com/brianokken" target="_blank" rel="noopener">@brianokken</a><br/> <b>Brian's pytest book</b>: <a href="https://ift.tt/3gXlXwm" target="_blank" rel="noopener">amazon.com</a><br/> <b>Test & Code podcast</b>: <a href="https://ift.tt/2UjzDrP" target="_blank" rel="noopener">testandcode.com</a><br/> <b>Test & Code 104: Top 28 pytest plugins</b>: <a href="https://ift.tt/2TjgFS1" target="_blank" rel="noopener">testandcode.com/104</a><br/> <br/> <b>The list of plugins</b><br/> <br/> <b>pytest-sugar</b>: <a href="https://ift.tt/2mjdnQI" target="_blank" rel="noopener">github.com/Teemu/pytest-sugar</a><br/> <b>pytest-cov</b>: <a href="https://ift.tt/2H0WyBk" target="_blank" rel="noopener">pypi.org/project/pytest-cov</a><br/> <b>pytest-stress</b>: <a href="https://ift.tt/3h2RBIY" target="_blank" rel="noopener">github.com/pytest-dev/pytest-stress</a><br/> <b>pytest-repeat</b>: <a href="https://ift.tt/290tzix" target="_blank" rel="noopener">github.com/pytest-dev/pytest-repeat</a><br/> <b>pytest-instafail</b>: <a href="https://ift.tt/2XBJ9Zn" target="_blank" rel="noopener">pypi.org/project/pytest-instafail</a><br/> <b>pytest-metadata</b>: <a href="https://ift.tt/374vPjs" target="_blank" rel="noopener">github.com/pytest-dev/pytest-metadata</a><br/> <b>pytest-randomly</b>: <a href="https://ift.tt/2ElhdwA" target="_blank" rel="noopener">github.com/pytest-dev/pytest-randomly</a><br/> <b>pytest-xdist</b>: <a href="https://ift.tt/2U7rPtD" target="_blank" rel="noopener">pypi.org/project/pytest-xdist</a><br/> <b>pytest-flake8</b>: <a href="https://ift.tt/2AcuieW" target="_blank" rel="noopener">github.com/tholo/pytest-flake8</a><br/> <b>pytest-timeout</b>: <a href="https://ift.tt/3eYUecY" target="_blank" rel="noopener">pypi.org/project/pytest-timeout</a><br/> <b>pytest-spec</b>: <a href="https://ift.tt/2XBJawp" target="_blank" rel="noopener">pypi.org/project/pytest-spec</a><br/> <b>pytest-picked</b>: <a href="https://ift.tt/3gZJRHy" target="_blank" rel="noopener">github.com/anapaulagomes/pytest-picked</a><br/> <b>pytest-freezegun</b>: <a href="https://ift.tt/2AOux00" target="_blank" rel="noopener">github.com/ktosiek/pytest-freezegun</a><br/> <b>pytest-check</b>: <a href="https://ift.tt/2VXAUWF" target="_blank" rel="noopener">github.com/okken/pytest-check</a><br/> <b>fluentcheck</b>: <a href="https://ift.tt/3gYUEBP" target="_blank" rel="noopener">github.com/csparpa/fluentcheck</a><br/></div><br/> <strong>Sponsors</strong><br/> <br/> <a href='https://ift.tt/3aBjB2k> <a href='https://ift.tt/2AndcLj Error Monitoring, Code TALKPYTHON</a><br> <a href='https://ift.tt/2PVc9qH Python Training</a>

from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...