Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python.announce > #128 > unrolled thread

pytest-incremental - an incremental test runner

Started byEduardo Schettino <schettino72@gmail.com>
First post2011-05-07 19:21 +0800
Last post2011-05-07 19:21 +0800
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python.announce


Contents

  pytest-incremental - an incremental test runner Eduardo Schettino <schettino72@gmail.com> - 2011-05-07 19:21 +0800

#128 — pytest-incremental - an incremental test runner

FromEduardo Schettino <schettino72@gmail.com>
Date2011-05-07 19:21 +0800
Subjectpytest-incremental - an incremental test runner
Message-ID<mailman.1294.1304784486.9059.python-announce-list@python.org>
pytest-incremental
====================

an incremental test runner (pytest plug-in)


What is an "incremental test runner" ?
=======================================

The idea is to execute your tests faster by executing not all of them
but only the "required" ones.

When talking about build-tools it is common to refer to the terms:

 * initial (full) build - all files are compiled
 * incremental build (or partial rebuild) - just changed files are compiled
 * no-op build - no files are compiled (none changed since last execution)

So an "incremental test runner" will only re-execute tests that were
affected
by changes in the source code since last successful execution.


docs: http://pypi.python.org/pypi/pytest-incremental
code: https://bitbucket.org/schettino72/pytest-incremental

.

[toc] | [standalone]


Back to top | Article view | comp.lang.python.announce


csiph-web