diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-10-27 18:05:32 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-10-27 18:05:32 (GMT) |
commit | 0b3014dda01b6ed3fc805cbfce37a9dc6f0d0fa1 (patch) | |
tree | b5f27ae2a237c49e52a35dfe10284396025d69b8 /Doc/library/unittest.rst | |
parent | f358eaf3620597d746bb7f34976103697e5d92bf (diff) | |
parent | bc876a2d4a7b8aa9aedd5da6b62fe391092c3b3c (diff) | |
download | cpython-0b3014dda01b6ed3fc805cbfce37a9dc6f0d0fa1.zip cpython-0b3014dda01b6ed3fc805cbfce37a9dc6f0d0fa1.tar.gz cpython-0b3014dda01b6ed3fc805cbfce37a9dc6f0d0fa1.tar.bz2 |
merge from 3.2
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 2657ebd..06f3d83 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -99,9 +99,10 @@ need to derive from a specific class. 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>`_. + for those new to unit testing. For production environments it is + recommended that tests be driven by a continuous integration system such as + `Buildbot <http://buildbot.net/trac>`_, `Jenkins <http://jenkins-ci.org>`_ + or `Hudson <http://hudson-ci.org/>`_. .. _unittest-minimal-example: |