~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/make-lp-user

  • Committer: Curtis Hovey
  • Date: 2011-12-28 17:03:06 UTC
  • mto: This revision was merged to the branch mainline in revision 14605.
  • Revision ID: curtis.hovey@canonical.com-20111228170306-n9fz94h85ckaoaf3
Separate test-authoring classes from test-running classes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
import _pythonpath
33
33
 
 
34
import os
34
35
from optparse import OptionParser
35
 
import os
36
36
import re
37
37
import subprocess
38
38
import sys
 
39
import transaction
39
40
 
40
41
from storm.store import Store
41
 
import transaction
 
42
 
42
43
from zope.component import getUtility
43
44
 
44
 
from lp.registry.interfaces.gpg import (
45
 
    GPGKeyAlgorithm,
46
 
    IGPGKeySet,
47
 
    )
 
45
from lp.services.gpg.interfaces import IGPGHandler
 
46
from lp.services.scripts import execute_zcml_for_scripts
 
47
from canonical.lazr.timeout import set_default_timeout_function
 
48
from lp.registry.interfaces.gpg import GPGKeyAlgorithm, IGPGKeySet
48
49
from lp.registry.interfaces.person import IPersonSet
49
50
from lp.registry.interfaces.ssh import ISSHKeySet
50
51
from lp.registry.interfaces.teammembership import TeamMembershipStatus
51
 
from lp.services.gpg.interfaces import IGPGHandler
52
 
from lp.services.scripts import execute_zcml_for_scripts
53
 
from lp.services.timeout import set_default_timeout_function
54
52
from lp.testing.factory import LaunchpadObjectFactory
55
53
 
56
54
# Shut up, pyflakes.