]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Include mention of jenkins as an example framework for doing CI
authorSenthil Kumaran <senthil@uthcode.com>
Sat, 27 Oct 2012 18:04:55 +0000 (11:04 -0700)
committerSenthil Kumaran <senthil@uthcode.com>
Sat, 27 Oct 2012 18:04:55 +0000 (11:04 -0700)
Doc/library/unittest.rst

index 72a3a7b51a523230049b2488c828c48cea3ddd6e..4422533d02f4e7066cceb9bfd63ba6835f5751b4 100644 (file)
@@ -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: