diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2011-01-03 15:39:49 (GMT) |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2011-01-03 15:39:49 (GMT) |
commit | 90efac7f3794760b3a4d07171b90c86eeb4f2f81 (patch) | |
tree | bdca9b7d5bd323b1ea309414bf74d9b7f20217c0 /Doc/library/unittest.rst | |
parent | 1d5eb3425baeb363c71e6b8dcb57bec967682d7f (diff) | |
download | cpython-90efac7f3794760b3a4d07171b90c86eeb4f2f81.zip cpython-90efac7f3794760b3a4d07171b90c86eeb4f2f81.tar.gz cpython-90efac7f3794760b3a4d07171b90c86eeb4f2f81.tar.bz2 |
Issue 10502: addition of unittestgui to Tools/
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 3b49ea0..ad6d314 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -97,6 +97,13 @@ need to derive from a specific class. A special-interest-group for discussion of testing, and testing tools, in Python. + The script :file:`Tools/unittestgui/unittestgui.py` in the Python source distribution is + a GUI tool for test discovery and execution. This is intended largely for ease of use + for those new to unit testing. For production environments it is recommended that + tests be driven by a continuous integration system such as `Hudson <http://hudson-ci.org/>`_ + or `Buildbot <http://buildbot.net/trac>`_. + + .. _unittest-minimal-example: Basic example |