diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-07-29 11:05:28 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-07-29 11:07:32 -0400 |
commit | 6f9e8f482c133eca993124d63d61463fd2770f66 (patch) | |
tree | ddcf31c653597b4c472ed59ab498986592f7dd02 | |
parent | 0d92f79fd86073203a2a956460140c311c85a396 (diff) | |
download | sqlalchemy-6f9e8f482c133eca993124d63d61463fd2770f66.tar.gz |
Enable JSON testing for pymysql
PyMySQL upstream has released 0.7.6 which should resolve
JSON encoding issues.
Change-Id: Icf543d48dace1419a0aac78bdb15ec666f0edafe
Fixes: #3754
-rw-r--r-- | test/requirements.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/requirements.py b/test/requirements.py index 5f366ba47..9286a415d 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -574,10 +574,7 @@ class DefaultRequirements(SuiteRequirements): def json_type(self): return only_on([ lambda config: against(config, "mysql >= 5.7") and - not config.db.dialect._is_mariadb and - # workaround for: - # https://github.com/PyMySQL/PyMySQL/issues/488 - not (config.db.dialect.driver == 'pymysql'), + not config.db.dialect._is_mariadb, "postgresql >= 9.3" ]) |