~launchpad-results/launchpad-results/trunk

« back to all changes in this revision

Viewing changes to lib/lpresults/tracker/interfaces/testperson.py

  • Committer: Marc Tardif
  • Date: 2012-03-21 22:32:04 UTC
  • Revision ID: marc.tardif@canonical.com-20120321223204-8g7mvzzwmh8ifbrt
Added support for getting systems from a person (LP #899361)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    PersonSearchParams,
24
24
    )
25
25
 
26
 
from lpresults.tracker.interfaces.teststat import (
27
 
    IHasTestStatPeople,
28
 
    ITestStatPerson,
29
 
    )
 
26
from lpresults.tracker.interfaces.testrank import ITestRankPerson
 
27
from lpresults.tracker.interfaces.teststat import IHasTestStatPeople
30
28
from lpresults.tracker.interfaces.testtarget import TestTargetParamsMixin
31
29
from lpresults.tracker.services.patchers import patch_collection_return_type
32
30
 
33
31
 
34
 
class ITestPerson(IPerson, ITestStatPerson):
 
32
class ITestPerson(IPerson, ITestRankPerson):
35
33
    """A test person.
36
34
 
37
35
    This extends the concept of a person with test information.