diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2016-07-29 18:22:49 -0400 |
---|---|---|
committer | Gerrit Code Review <gerrit2@ln3.zzzcomputing.com> | 2016-07-29 18:22:49 -0400 |
commit | 9130e5923ee88802d06bd5fb2db168198eed2f8c (patch) | |
tree | 299edc0756889677acb51f47bc73226df020435d | |
parent | 64424b870beef2bdb5a7b97ddb5c2602277d16ac (diff) | |
parent | 6f9e8f482c133eca993124d63d61463fd2770f66 (diff) | |
download | sqlalchemy-9130e5923ee88802d06bd5fb2db168198eed2f8c.tar.gz |
Merge "Enable JSON testing for pymysql"
-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" ]) |