diff options
author | Gord Thompson <gord@gordthompson.com> | 2019-11-17 09:50:48 -0700 |
---|---|---|
committer | Gord Thompson <gord@gordthompson.com> | 2019-11-17 09:50:48 -0700 |
commit | 23b62c72ce436e32633f93c80a83db42bf5d60c7 (patch) | |
tree | c2b96e22a3f812900fe8deebc6691e95318c6afe | |
parent | 1acc675e3f46786afe87dbe384f5970136e2e507 (diff) | |
download | sqlalchemy-23b62c72ce436e32633f93c80a83db42bf5d60c7.tar.gz |
Fix charset= in README.unittests.rst for MySQL
-rw-r--r-- | README.unittests.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/README.unittests.rst b/README.unittests.rst index e587a89eb..cd83ef410 100644 --- a/README.unittests.rst +++ b/README.unittests.rst @@ -81,19 +81,19 @@ Setting Up Databases The test suite identifies several built-in database tags that run against a pre-set URL. These can be seen using --dbs:: - $ py.test --dbs=. + $ py.test --dbs Available --db options (use --dburi to override) default sqlite:///:memory: firebird firebird://sysdba:masterkey@localhost//Users/classic/foo.fdb mssql mssql+pyodbc://scott:tiger^5HHH@mssql2017:1433/test?driver=ODBC+Driver+13+for+SQL+Server mssql_pymssql mssql+pymssql://scott:tiger@ms_2008 - mysql mysql://scott:tiger@127.0.0.1:3306/test?charset=utf8 + mysql mysql://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4 oracle oracle://scott:tiger@127.0.0.1:1521 oracle8 oracle://scott:tiger@127.0.0.1:1521/?use_ansi=0 pg8000 postgresql+pg8000://scott:tiger@127.0.0.1:5432/test postgresql postgresql://scott:tiger@127.0.0.1:5432/test postgresql_psycopg2cffi postgresql+psycopg2cffi://scott:tiger@127.0.0.1:5432/test - pymysql mysql+pymysql://scott:tiger@127.0.0.1:3306/test?charset=utf8 + pymysql mysql+pymysql://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4 sqlite sqlite:///:memory: sqlite_file sqlite:///querytest.db |