| 1234567891011121314151617181920212223242526272829303132333435363738 |
- [egg_info]
- tag_build =
- tag_date = 0
- [nosetests]
- with-sqla_testing = true
- exclude = ^examples
- first-package-wins = true
- where = test
- [tool:pytest]
- addopts = --tb native -v -r sfxX --maxfail=25 -p no:warnings
- python_files = test/*test_*.py
- [upload]
- sign = 1
- identity = C4DAFEE1
- [sqla_testing]
- requirement_cls = test.requirements:DefaultRequirements
- profile_file = test/profiles.txt
- oracle_db_link = test_link
- [db]
- 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
- postgresql_psycopg2cffi = postgresql+psycopg2cffi://scott:tiger@127.0.0.1:5432/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
|