From d59c3eafdb6a0f0217cb57a26ce7e47e5c4430ca Mon Sep 17 00:00:00 2001 From: salimfadhley Date: Thu, 17 Oct 2013 00:29:14 +0100 Subject: [PATCH] Add some more comments. --- jenkinsapi/build.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/jenkinsapi/build.py b/jenkinsapi/build.py index f5e59c0..c0cfade 100644 --- a/jenkinsapi/build.py +++ b/jenkinsapi/build.py @@ -1,5 +1,11 @@ """ -Build API methods +A jenkins build represents a single execution of a Jenkins Job. + +Builds can be thought of as the second level of the jenkins heirarchy +beneath Jobs. Builds can have state, such as whether they are running or +not. They can also have outcomes, such as wether they passed or failed. + +Build objects can be associated with Results and Artifacts.g """ import time -- 2.7.4