~ubuntu-branches/ubuntu/trusty/python-jenkinsapi/trusty-proposed

« back to all changes in this revision

Viewing changes to jenkinsapi/constants.py

  • Committer: Package Import Robot
  • Author(s): Al Stone
  • Date: 2013-07-22 20:55:13 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130722205513-z1obexz5cajsft30
Tags: 0.2.11-1
* Update to latest upstream. 
* Update watch file
* Closes: #712130 -- updated to newer upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
STATUS_ERROR = "ERROR"
5
5
STATUS_ABORTED = "ABORTED"
6
6
STATUS_REGRESSION = "REGRESSION"
 
7
STATUS_SUCCESS = "SUCCESS"
7
8
 
8
9
STATUS_FIXED = "FIXED"
9
10
STATUS_PASSED = "PASSED"
10
11
 
11
12
RESULTSTATUS_FAILURE = "FAILURE"
12
13
RESULTSTATUS_FAILED = "FAILED"
 
14
RESULTSTATUS_SKIPPED = "SKIPPED"
13
15
 
14
16
STR_RE_SPLIT_VIEW = "(.*)/view/([^/]*)/?"
15
17
RE_SPLIT_VIEW_URL = re.compile( STR_RE_SPLIT_VIEW )