(env) [scfan@scfan project]$ nosetests --plugins -v Plugin capture score: 1600 Output capture plugin. Enabled by default. Disable with ``-s`` or ``--nocapture``. This plugin captures stdout during test execution, appending any output captured to the error or failure output, should the test fail or raise an error.
Plugin failuredetail score: 1600 Plugin that provides extra information in tracebacks of test failures.
Plugin xunit score: 1500 This plugin provides test results in the standard XUnit XML format.
Plugin deprecated score: 1000 Installs a DEPRECATED error class for the DeprecatedTest exception. Enabled by default.
Plugin skip score: 1000 Plugin that installs a SKIP error class for the SkipTest exception. When SkipTest is raised, the exception will be logged in the skipped attribute of the result, 'S' or 'SKIP' (verbose) will be output, and the exception will not be counted as an error or failure.
Plugin multiprocess score: 1000 Run tests in multiple processes. Requires processing module.
Plugin logcapture score: 500 Log capture plugin. Enabled by default. Disable with --nologcapture. This plugin captures logging statements issued during test execution, appending any output captured to the error or failure output, should the test fail or raise an error.
Plugin coverage score: 200 Activate a coverage report using Ned Batchelder's coverage module. .....
withopen('HTMLReport.html', 'w') as f: runner = HTMLTestRunner(stream=f, title = 'MathFunc Test Report', description='generated by HTMLTestRunner.', verbosity=2 ) runner.run(suite)