summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-10-27 18:04:55 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-10-27 18:04:55 (GMT)
commit847c33cc3ba4fcbda0b726391388d4d86a50b9e3 (patch)
treeca0cdaf982a4a01645faffbf23d3a54f132d389f /Doc
parentcad7b314674588f0a079de78945f8fc28d38af8c (diff)
downloadcpython-847c33cc3ba4fcbda0b726391388d4d86a50b9e3.zip
cpython-847c33cc3ba4fcbda0b726391388d4d86a50b9e3.tar.gz
cpython-847c33cc3ba4fcbda0b726391388d4d86a50b9e3.tar.bz2
Include mention of jenkins as an example framework for doing CI
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/unittest.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 72a3a7b..4422533 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: