Tuesday, January 21, 2020

Test and Code: 98: pytest-testmon - selects tests affected by changed files and methods - Tibor Arpas

pytest-testmon is a pytest plugin which selects and executes only tests you need to run. It does this by collecting dependencies between tests and all executed code (internally using Coverage.py) and comparing the dependencies against changes. testmon updates its database on each test execution, so it works independently of version control.

In this episode, I talk with testmon creator Tibor Arpas about testmon, about it's use and how it works.

Special Guest: Tibor Arpas.

Sponsored By:

Support Test & Code: Python Software Testing & Engineering

Links:

<p>pytest-testmon is a pytest plugin which selects and executes only tests you need to run. It does this by collecting dependencies between tests and all executed code (internally using Coverage.py) and comparing the dependencies against changes. testmon updates its database on each test execution, so it works independently of version control.</p> <p>In this episode, I talk with testmon creator Tibor Arpas about testmon, about it&#39;s use and how it works.</p><p>Special Guest: Tibor Arpas.</p><p>Sponsored By:</p><ul><li><a href="https://ift.tt/2JDHRTz" rel="nofollow">PyCharm Professional</a>: <a href="https://ift.tt/2JDHRTz" rel="nofollow">Try PyCharm Pro with a 4 month free trial. </a> Promo Code: TESTNCODE2020</li></ul><p><a href="https://ift.tt/2tzXV5e" rel="payment">Support Test & Code: Python Software Testing & Engineering</a></p><p>Links:</p><ul><li><a href="https://testmon.org/" title="testmon.org" rel="nofollow">testmon.org</a></li><li><a href="https://ift.tt/35hHAkD" title="Determining affected tests" rel="nofollow">Determining affected tests</a></li><li><a href="https://ift.tt/2YFZaMQ" title="Tibor's post on using pytest in PyCharm" rel="nofollow">Tibor's post on using pytest in PyCharm</a></li><li><a href="https://ift.tt/3auU2R4" title="runtime-info plugin for PyCharm" rel="nofollow">runtime-info plugin for PyCharm</a></li></ul>

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...