forked from zzzeek/sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
56 lines (41 loc) · 1.54 KB
/
setup.cfg
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[egg_info]
tag_build = dev
[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
# name of a "loopback" link set up on the oracle database.
# to create this, suppose your DB is scott/tiger@xe. You'd create it
# like:
# create public database link test_link connect to scott identified by tiger using 'xe';
oracle_db_link = test_link
# host name of a postgres database that has the postgres_fdw extension.
# to create this run:
# CREATE EXTENSION postgres_fdw;
# GRANT USAGE ON FOREIGN DATA WRAPPER postgres_fdw TO public;
# this can be localhost to create a loopback foreign table
# postgres_test_db_link = localhost
[db]
default=sqlite:///:memory:
sqlite=sqlite:///:memory:
sqlite_file=sqlite:///querytest.db
postgresql=postgresql://scott:[email protected]:5432/test
pg8000=postgresql+pg8000://scott:[email protected]:5432/test
postgresql_psycopg2cffi=postgresql+psycopg2cffi://scott:[email protected]:5432/test
mysql=mysql://scott:[email protected]:3306/test?charset=utf8
pymysql=mysql+pymysql://scott:[email protected]:3306/test?charset=utf8
mssql=mssql+pyodbc://scott:tiger@ms_2008
mssql_pymssql=mssql+pymssql://scott:tiger@ms_2008
oracle=oracle://scott:[email protected]:1521
oracle8=oracle://scott:[email protected]:1521/?use_ansi=0
firebird=firebird://sysdba:masterkey@localhost//Users/classic/foo.fdb