~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/testing/pgsql.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-09 09:23:38 UTC
  • mfrom: (14333.2.13 history-model)
  • Revision ID: launchpad@pqm.canonical.com-20111209092338-se7u5l0skqzaes1v
[r=jcsackett][bug=295214, 894836,
 898200] Keep sort button ob bug listing pages in sync with the
 displayed data

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
import atexit
11
11
import os
12
12
import random
 
13
import time
13
14
import sys
14
 
import time
15
15
 
 
16
from bzrlib.lock import WriteLock
16
17
from bzrlib.errors import LockContention
17
 
from bzrlib.lock import WriteLock
18
18
import psycopg2
19
19
 
20
 
from lp.services.config import config
21
 
from lp.services.database.postgresql import (
 
20
from canonical.config import config
 
21
from canonical.database.postgresql import (
22
22
    generateResetSequencesSQL,
23
23
    resetSequences,
24
24
    )
187
187
        if template is not None:
188
188
            self.template = template
189
189
        if dbname is PgTestSetup.dynamic:
190
 
            from lp.testing.layers import BaseLayer
 
190
            from canonical.testing.layers import BaseLayer
191
191
            if os.environ.get('LP_TEST_INSTANCE'):
192
192
                self.dbname = "%s_%s" % (
193
193
                    self.__class__.dbname, os.environ.get('LP_TEST_INSTANCE'))