~cr3/launchpad-results/trunk

« back to all changes in this revision

Viewing changes to lib/lp/results/interfaces/testtarget.py

  • Committer: Marc Tardif
  • Date: 2010-12-07 01:16:17 UTC
  • Revision ID: marc.tardif@canonical.com-20101207011617-cqcv0240ca3cs5ba
Added TestStat for statistics about test runs and TestRank for ranking of projects.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
    "TestTargetParamsMixin",
10
10
    ]
11
11
 
12
 
from zope.interface import Interface
 
12
from zope.interface import (
 
13
    Attribute,
 
14
    Interface,
 
15
    )
13
16
from zope.schema import Object
14
17
 
15
18
from lp.results.interfaces.store import IStoreHolder
20
23
 
21
24
    Examples include just an IProject for now.
22
25
    """
23
 
    pass
 
26
 
 
27
    name = Attribute("Name given to the target")
24
28
 
25
29
 
26
30
class IHasTestTarget(Interface):