Metadata-Version: 2.1
Name: stressrunner
Version: 1.1.6
Summary: A stressrunner similar as TextTestRunner for stress test, support for html report.
Home-page: https://github.com/txu2k8/stress-runner
Author: tao.xu
Author-email: tao.xu2008@outlook.com
License: MIT
Description: # stress-runner
        A runner similar as TextTestRunner for stress test, support for html report.
        Based on unittest, support iterative exection, html report, send html report, etc.
        
        # Install
        ```shell script
        pip install stressrunner -U
        ```
        
        # Quick Start:
        A TestRunner for use with the Python unit testing framework. It
        generates a HTML report to show the result at a glance.
        The simplest way to use this is to invoke its main method. E.g.
        ```python
        from stressrunner import runner
        # define your tests
        
        if __name__ == '__main__':
            runner.main()
        ```
        For more customization options, instantiates a StressRunner object.
        StressRunner is a counterpart to unittest's TextTestRunner. E.g.
        ```python
        # output to a file
        from stressrunner import StressRunner
        
        runner = StressRunner(
            report_path='./report/test.html',
            test_title='My unit test',
            desc='This demonstrates the report output by StressRunner.'
        )
        ```
        
Keywords: stress,stressrunner,html,unittest
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.4.0
Description-Content-Type: text/markdown
