diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-01-24 18:28:09 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-01-24 18:28:09 -0500 |
| commit | 6b0515039214fa16aa83c9f8164d7011e4748175 (patch) | |
| tree | bf8c03389721146fd269c5c152d6815839db30b9 /setup.cfg | |
| parent | 926784f51361f510fffcc192bdbde78ff2189438 (diff) | |
| download | sqlalchemy-6b0515039214fa16aa83c9f8164d7011e4748175.tar.gz | |
- 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
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -16,6 +16,7 @@ python_files=test/*test_*.py sign = 1 identity = C4DAFEE1 + [sqla_testing] requirement_cls=test.requirements:DefaultRequirements profile_file=test/profiles.txt @@ -38,16 +39,18 @@ oracle_db_link = test_link default=sqlite:///:memory: sqlite=sqlite:///:memory: sqlite_file=sqlite:///querytest.db + postgresql=postgresql://scott:tiger@127.0.0.1:5432/test pg8000=postgresql+pg8000://scott:tiger@127.0.0.1:5432/test -postgres=postgresql://scott:tiger@127.0.0.1:5432/test -postgresql_jython=postgresql+zxjdbc://scott:tiger@127.0.0.1:5432/test postgresql_psycopg2cffi=postgresql+psycopg2cffi://scott:tiger@127.0.0.1:5432/test -mysql=mysql://scott:tiger@127.0.0.1:3306/test?charset=utf8&use_unicode=0 -mysqlconnector=mysql+mysqlconnector://scott:tiger@127.0.0.1:3306/test -mssql=mssql+pyodbc://scott:tiger@ms_2008 -oursql=mysql+oursql://scott:tiger@127.0.0.1:3306/test + +mysql=mysql://scott:tiger@127.0.0.1:3306/test?charset=utf8 pymysql=mysql+pymysql://scott:tiger@127.0.0.1:3306/test?charset=utf8 + +mssql=mssql+pyodbc://scott:tiger@ms_2008 +mssql_pymssql=mssql+pymssql://scott:tiger@ms_2008 + oracle=oracle://scott:tiger@127.0.0.1:1521 oracle8=oracle://scott:tiger@127.0.0.1:1521/?use_ansi=0 + firebird=firebird://sysdba:masterkey@localhost//Users/classic/foo.fdb |
