Metadata-Version: 1.1
Name: html-testRunner-df
Version: 1.2.2.dev3
Summary: A Test Runner in python, for Human Readable HTML Reports
Home-page: https://github.com/dongfangtianyu/HtmlTestRunner
Author: Ordanis Sanchez Suero, dongfangtianyu
Author-email: ordanisanchez@gmail.com
License: MIT license
Description: 
        ===============================
        HtmlTestRunner
        ===============================
        
        
        .. image:: https://img.shields.io/pypi/v/html-testRunner-df.svg
                :target: https://pypi.python.org/pypi/html-testRunner-df
        
        .. image:: https://img.shields.io/travis/oldani/HtmlTestRunner.svg
                :target: https://travis-ci.org/oldani/HtmlTestRunner
        
        **NOTE**: This Package fork by ``html-testRunner==1.2.1`` and fixed some bug.
        if ``html-testRunner`` release the new version, you should reinstall it
        ``pip install html-testRunner -U``
        
        HtmlTest runner is a unittest test runner that save test results
        in Html files, for human readable presentation of results.
        
        This Package was inspired in ``unittest-xml-reporting`` and
        ``HtmlTestRunner by tungwaiyip``.
        
        Usage:
        --------------
        
        .. code-block:: python
        
            import HtmlTestRunner
            import unittest
        
        
            class TestStringMethods(unittest.TestCase):
        
                def test_upper(self):
                    self.assertEqual('foo'.upper(), 'FOO')
        
                def test_error(self):
                    """ This test should be marked as error one. """
                    raise ValueError
        
                def test_fail(self):
                    """ This test should fail. """
                    self.assertEqual(1, 2)
        
                @unittest.skip("This is a skipped test.")
                def test_skip(self):
                    """ This test should be skipped. """
                    pass
        
            if __name__ == '__main__':
                unittest.main(testRunner=HtmlTestRunner.HTMLTestRunner(output='example_dir'))
        
        As simple as import the class an initialize it, it only have one request
        parameter that is output, this one is use to place the report in a sub
        direcotry in ``reports`` directory.
        
        Links:
        ---------
        
        * `Github <https://github.com/oldani/HtmlTestRunner>`_
        
Keywords: HtmlTestRunner TestRunner Html Reports
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
