diff options
author | Gord Thompson <gord@gordthompson.com> | 2020-02-26 12:50:01 -0700 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-03-13 15:04:33 -0400 |
commit | 79a53645ba8e6c12aff33d9ba1318ea4328ab7de (patch) | |
tree | 85e1d604c42c05ef9784428bff12aeb8547ff397 /lib/sqlalchemy/testing/profiling.py | |
parent | 67e51ea5dcb3955105c35bf8149785bd72c7a521 (diff) | |
download | sqlalchemy-79a53645ba8e6c12aff33d9ba1318ea4328ab7de.tar.gz |
Fix tests failing for SQLite file databases; repair provisioning
1. ensure provision.py loads dialect implementations when running
reap_dbs.py. Reapers haven't been working since
598f2f7e557073f29563d4d567f43931fc03013f .
2. add some exclusion rules to allow the sqlite_file target to work;
add to tox.
3. add reap dbs target for SQLite, repair SQLite drop_db routine
which also wasn't doing the right thing for memory databases
etc.
4. Fix logging in provision files, as the main provision logger
is the one that's enabled by reap_dbs and maybe others, have all
the provision files use the provision logger.
Fixes: #5180
Fixes: #5168
Change-Id: Ibc1b0106394d20f5bcf847f37b09d185f26ac9b5
Diffstat (limited to 'lib/sqlalchemy/testing/profiling.py')
-rw-r--r-- | lib/sqlalchemy/testing/profiling.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/profiling.py b/lib/sqlalchemy/testing/profiling.py index 05a0fde49..b6108400d 100644 --- a/lib/sqlalchemy/testing/profiling.py +++ b/lib/sqlalchemy/testing/profiling.py @@ -88,6 +88,11 @@ class ProfileStatsFile(object): dbapi_key = config.db.name + "_" + config.db.driver + if config.db.name == "sqlite" and config.db.dialect._is_url_file_db( + config.db.url + ): + dbapi_key += "_file" + # keep it at 2.7, 3.1, 3.2, etc. for now. py_version = ".".join([str(v) for v in sys.version_info[0:2]]) |