Skip to content

cpackham/tappy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tappy

TAP producer for Python unittest framework

Tappy builds on top of the standard unittest framework provides TestRunner and TestResult classes that together produce TAP compliant output, see https://testanything.org/ for more info on the TAP format.

Simple usage:

import unittest
import tappy

class MyTestCase(unittest.TestCase):
    ...

if __name__ == "__main__":
    unittest.main(testRunner=tappy.TapTestRunner)

Tappy can also be used in place of the unittest module on the commandline.

Instead of typing:

python -m unittest

You can type:

python -m tappy

See also

About

TAP producer built on top of python's unittest framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages