Files
sqlalchemy/reap_dbs.py
T
Federico Caselli d539bc3a0f update the format_docs_code to also work on python files
Change-Id: I0a6c9610b3fd85365ed4c2c199e3cad87ee64022
2024-11-30 21:10:21 +01:00

24 lines
630 B
Python

"""Drop Oracle Database, 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.
"""
import logging
import sys
from sqlalchemy.testing import provision
logging.basicConfig()
logging.getLogger(provision.__name__).setLevel(logging.INFO)
provision.reap_dbs(sys.argv[1])