blob: 10accde90f9e288993c7565b710e5cae9e157331 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
"""Drop Oracle, SQL Server databases that are left over from a
multiprocessing test run.
Currently the cx_Oracle driver seems to sometimes not release a
TCP connection even if close() is called, which prevents the provisioning
system from dropping a database in-process.
For SQL Server, databases still remain in use after tests run and
running a kill of all detected sessions does not seem to release the
database in process.
"""
from sqlalchemy.testing import provision
import logging
import sys
logging.basicConfig()
logging.getLogger(provision.__name__).setLevel(logging.INFO)
provision.reap_dbs(sys.argv[1])
|