summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-09-26 17:21:21 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-09-26 17:21:21 -0400
commit1a7778632d8039bd687e23522ce6c027e859d487 (patch)
tree1ea58d81c25db7d65f6244d1e12344c1ef8dd97f /setup.cfg
parent0895e34d21c9818ec73e5c87e35ad6ba5c05acbd (diff)
downloadsqlalchemy-1a7778632d8039bd687e23522ce6c027e859d487.tar.gz
- further reorganization of test suite:
- bootstrap and lib move to all absolute imports - testing.py is no longer internally referenced. - requirements move to be a pluggable class which can be overridden. - cleanup in the interests of third party testing, test/lib and test/bootstrap may move to be an independent package.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg19
1 files changed, 18 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index c2983fe41..1610fb00f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,7 +2,24 @@
tag_build = dev
[nosetests]
-with-_sqlalchemy = true
+with-sqlalchemy = true
exclude = ^examples
first-package-wins = true
where = test
+
+[requirements]
+requirement_cls=test.lib.requires:DefaultRequirements
+
+[db]
+sqlite=sqlite:///:memory:
+sqlite_file=sqlite:///querytest.db
+postgresql=postgresql://scott:tiger@127.0.0.1:5432/test
+postgres=postgresql://scott:tiger@127.0.0.1:5432/test
+pg8000=postgresql+pg8000://scott:tiger@127.0.0.1:5432/test
+postgresql_jython=postgresql+zxjdbc://scott:tiger@127.0.0.1:5432/test
+mysql_jython=mysql+zxjdbc://scott:tiger@127.0.0.1:5432/test
+mysql=mysql://scott:tiger@127.0.0.1:3306/test
+pymysql=mysql+pymysql://scott:tiger@127.0.0.1:3306/test?use_unicode=0&charset=utf8
+oracle=oracle://scott:tiger@127.0.0.1:1521
+oracle8=oracle://scott:tiger@127.0.0.1:1521/?use_ansi=0
+maxdb=maxdb://MONA:RED@/maxdb1