Skip to content

Commit

Permalink
compress=True on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nakagami committed Aug 19, 2024
1 parent a20c0e5 commit 10d302d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cymysql/tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class PyMySQLTestCase(unittest.TestCase):
test_passwd = os.environ.get("MYSQL_ROOT_PASSWORD", "")
databases = [
{"host": test_host, "user": "root",
"passwd": test_passwd, "db": "test_cymysql", "use_unicode": True},
"passwd": test_passwd, "db": "test_cymysql", "use_unicode": True, "compress": True},
{"host": test_host, "user": "root", "passwd": test_passwd, "db": "test_cymysql2"}]

def setUp(self):
Expand Down

0 comments on commit 10d302d

Please sign in to comment.