tappy - TAP tools for Python¶

tappy provides tools for working with the Test Anything Protocol (TAP) in Python.
tappy generates TAP output from your unittest
test cases. You
can use the TAP output files with a tool like the Jenkins TAP plugin or any other TAP
consumer.
tappy also provides a tappy
command line tool as a TAP consumer. This tool
can read TAP files and display the results like a normal Python test runner.
tappy provides other TAP consumers via Python APIs for programmatic access to
TAP files.
For the curious: tappy sounds like “happy.”
Installation¶
tappy is available for download from PyPI. tappy is currently supported on Python 2.7, 3.3, 3.4, 3.5, and PyPy. It is continuously tested on Linux, OS X, and Windows.
$ pip install tap.py
Documentation¶
- TAP Producers
- TAP Consumers
- TAP Syntax Highlighter for Pygments
- Contributing
- Alternatives
- Releases
- Version 2.1, Released September 23, 2016
- Version 2.0, Released July 31, 2016
- Version 1.9, Released March 28, 2016
- Version 1.8, Released November 30, 2015
- Version 1.7, Released August 19, 2015
- Version 1.6, Released June 18, 2015
- Version 1.5, Released May 18, 2015
- Version 1.4, Released April 4, 2015
- Version 1.3, Released January 9, 2015
- Version 1.2, Released December 21, 2014
- Version 1.1, Released October 23, 2014
- Version 1.0, Released March 16, 2014