1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
[nosetests]
with-sqla_testing = true
exclude = ^examples
first-package-wins = true
where = test
[pytest]
addopts = --tb native -v -r fxX --maxfail=25
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
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
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
pymysql = mysql+pymysql://scott:tiger@127.0.0.1:3306/test?charset=utf8
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
|