unitstyle is a python module that adds several output format options for Python's standard unittest library (unittest2). Specifically, it adds many of the output options offered by mocha, a javascript unit testing framework. This package was created to port those outputs to Python.
unitstyle is available on PyPI. You should be able to install it with pip install unitstyle.
The unitstyle package provides itself as a unittest TestRunner, and should be used as such.
simple example:
import unittest
import unitstyle
suite = unittest.TestLoader().discover()
unitstyle.TestRunner().run(suite)Supported arguments to unitstyle's TestRunner are:
Feel free to open an issue to request more, or pull requests!
This project and code is licensed under the MIT License. See the LICENSE file for more.
Copyright (c) 2015 Dan Panzarella