Skip to content

Latest commit

 

History

History
16 lines (8 loc) · 708 Bytes

README.md

File metadata and controls

16 lines (8 loc) · 708 Bytes

pyAutotest

The aim of this project is to simplify TDD by running tests continuously.

Unit test libraries

pyAutotest should be relatively generic so it is simple to add support for different unit test libraries like unittest, doctest, etc.

I'll start with maven because I'm using it at work and it can be painful testing with it.

Inspiration

My co-workers' frustration with maven.

David Beazley's Generator Tricks for System Programmers gave me the idea of using python's generators to build a processing pipeline. It should be easy to have a common pipeline and just plug-in a couple of stages with the specifics of a certain unit test library.