Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

BSTestRunner is an extension to the Python standard library's unittest module. It generates easy to use HTML test reports.

Notifications You must be signed in to change notification settings

easonhan007/HTMLTestRunner

Repository files navigation

BSTestRunner is bootstrap3 version of HTMLTestRunner

Now support both python2 and python3

report

How to use

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.

import unittest
import BSTestRunner
if __name__ == '__main__':
 BSTestRunner.main()

For more customization options, instantiates a BSTestRunner object. BSTestRunner is a counterpart to unittest's TextTestRunner. E.g.

# output to a file
fp = file('my_report.html', 'wb')
runner = BSTestRunner.BSTestRunner(
 stream=fp,
 title='My unit test',
 description='This demonstrates the report output by BSTestRunner.'
 )
# Use an external stylesheet.
# See the Template_mixin class for more customizable options
runner.STYLESHEET_TMPL = '<link rel="stylesheet" href="my_stylesheet.css" type="text/css">'
# run the test
runner.run(my_test_suite)

About

BSTestRunner is an extension to the Python standard library's unittest module. It generates easy to use HTML test reports.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 87.7%
  • Python 12.3%

AltStyle によって変換されたページ (->オリジナル) /