From 6b0515039214fa16aa83c9f8164d7011e4748175 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 24 Jan 2016 18:28:09 -0500 Subject: - add a new qualifier "native" vs. "dbapi" unicode to avoid profiling problems here - add extras_require to setup.py for the most common DBAPIs - rework tox.ini to use extras, specify a test matrix built in --- lib/sqlalchemy/testing/profiling.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/sqlalchemy/testing') diff --git a/lib/sqlalchemy/testing/profiling.py b/lib/sqlalchemy/testing/profiling.py index 357735656..a152d5e93 100644 --- a/lib/sqlalchemy/testing/profiling.py +++ b/lib/sqlalchemy/testing/profiling.py @@ -75,6 +75,11 @@ class ProfileStatsFile(object): platform_tokens.append("pypy") if win32: platform_tokens.append("win") + platform_tokens.append( + "nativeunicode" + if config.db.dialect.convert_unicode + else "dbapiunicode" + ) _has_cext = config.requirements._has_cextensions() platform_tokens.append(_has_cext and "cextensions" or "nocextensions") return "_".join(platform_tokens) -- cgit v1.2.1