1[egg_info]
2tag_build =
3tag_date = 0
4
5[metadata]
6license_file = LICENSE
7
8[tool:pytest]
9addopts = --tb native -v -r sfxX --maxfail=25 -p no:warnings -p no:logging
10python_files = test/*test_*.py
11
12[upload]
13sign = 1
14identity = C4DAFEE1
15
16[flake8]
17show-source = false
18enable-extensions = G
19ignore =
20	A003,
21	D,
22	E203,E305,E711,E712,E721,E722,E741,
23	F821
24	N801,N802,N806,
25	RST304,RST303,RST299,RST399,
26	W503,W504
27exclude = .venv,.git,.tox,dist,doc,*egg,build
28import-order-style = google
29application-import-names = sqlalchemy,test
30
31[sqla_testing]
32requirement_cls = test.requirements:DefaultRequirements
33profile_file = test/profiles.txt
34oracle_db_link = test_link
35
36[db]
37default = sqlite:///:memory:
38sqlite = sqlite:///:memory:
39sqlite_file = sqlite:///querytest.db
40postgresql = postgresql://scott:tiger@127.0.0.1:5432/test
41pg8000 = postgresql+pg8000://scott:tiger@127.0.0.1:5432/test
42postgresql_psycopg2cffi = postgresql+psycopg2cffi://scott:tiger@127.0.0.1:5432/test
43mysql = mysql://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4
44pymysql = mysql+pymysql://scott:tiger@127.0.0.1:3306/test?charset=utf8mb4
45mssql = mssql+pyodbc://scott:tiger^5HHH@mssql2017:1433/test?driver=ODBC+Driver+13+for+SQL+Server
46mssql_pymssql = mssql+pymssql://scott:tiger@ms_2008
47oracle = oracle://scott:tiger@127.0.0.1:1521
48oracle8 = oracle://scott:tiger@127.0.0.1:1521/?use_ansi=0
49firebird = firebird://sysdba:masterkey@localhost//Users/classic/foo.fdb
50
51