A Test Runner in python, for Human Readable HTML Reports
Project description
HtmlTestRunner
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.
This project was created due to needs of getting human readables reports for test runned, i found one but was lack and with a lot of bad practice, but i liked how xml-reporting works. So i create this one that incorporated code from both projects but up to date.
Usage:
import HtmlTestRunner
import unittest
class TestStringMethods(unittest.TestCase):
""" Example test for HtmlRunner. """
def test_upper(self):
self.assertEqual('foo'.upper(), 'FOO')
def test_isupper(self):
self.assertTrue('FOO'.isupper())
self.assertFalse('Foo'.isupper())
def test_split(self):
s = 'hello world'
self.assertEqual(s.split(), ['hello', 'world'])
# check that s.split fails when the separator is not a string
with self.assertRaises(TypeError):
s.split(2)
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.
Console output:
Test Result:
TODO
Add test and docs
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
1 (2017-01-28)
First release on PyPI.
1.0.1 (2017-01-29)
Rename package due to conflict in PyPI.
1.0.2 (2017-01-29)
Fix broken docs.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for html_testRunner-1.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1acb298399b0b034167f4e0765464ef14ac6c689a7ceeecef55af5264ebf3b9b |
|
MD5 | 9a7c50f0a308b1c35ff3d521cb6cd5a6 |
|
BLAKE2b-256 | a02769be92b7c7e10eec4a448de49a64d4299d9a7499fc4e2d262b1312dfd95e |