setup.cfg 1.3 KB

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