* Deleted pytest log level * Force log level for smart open to error * Bump version * Bump version * Delete extra space
88 lines
1.8 KiB
TOML
88 lines
1.8 KiB
TOML
[tool.black]
|
|
line-length = 140
|
|
target-version = ["py37"]
|
|
extend-exclude = "(build|integration_tests|unit_tests|generated)"
|
|
|
|
[tool.coverage.report]
|
|
fail_under = 0
|
|
skip_empty = true
|
|
sort = "-cover"
|
|
omit = [
|
|
".venv/*",
|
|
"main.py",
|
|
"setup.py",
|
|
"unit_tests/*",
|
|
"integration_tests/*",
|
|
"**/generated/*",
|
|
]
|
|
|
|
[tool.flake8]
|
|
extend-exclude = [
|
|
"*/lib/*/site-packages",
|
|
".venv",
|
|
"build",
|
|
"models",
|
|
".eggs",
|
|
"airbyte-cdk/python/airbyte_cdk/models/__init__.py",
|
|
"airbyte-cdk/python/airbyte_cdk/sources/declarative/models/__init__.py",
|
|
".tox",
|
|
"airbyte_api_client",
|
|
"**/generated/*",
|
|
]
|
|
max-complexity = 20
|
|
max-line-length = 140
|
|
|
|
extend-ignore = [
|
|
"E203", # whitespace before ':' (conflicts with Black)
|
|
"E231", # Bad trailing comma (conflicts with Black)
|
|
"E501", # line too long (conflicts with Black)
|
|
"W503", # line break before binary operator (conflicts with Black)
|
|
]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
color_output = false
|
|
# skip_gitignore = true
|
|
line_length = 140
|
|
multi_line_output = 3
|
|
include_trailing_comma = true
|
|
force_grid_wrap = 0
|
|
use_parentheses = true
|
|
skip_glob = ["**/connector_builder/generated/**"]
|
|
|
|
|
|
[tool.mypy]
|
|
platform = "linux"
|
|
exclude = "(build|integration_tests|unit_tests|generated)"
|
|
|
|
# Optionals
|
|
ignore_missing_imports = true
|
|
|
|
# Strictness
|
|
allow_untyped_globals = false
|
|
allow_redefinition = false
|
|
implicit_reexport = false
|
|
strict_equality = true
|
|
|
|
# Warnings
|
|
warn_unused_ignores = true
|
|
warn_no_return = true
|
|
warn_return_any = true
|
|
warn_redundant_casts = true
|
|
warn_unreachable = true
|
|
|
|
# Error output
|
|
show_column_numbers = true
|
|
show_error_context = true
|
|
show_error_codes = true
|
|
show_traceback = true
|
|
pretty = true
|
|
color_output = true
|
|
error_summary = true
|
|
|
|
[tool.pytest.ini_options]
|
|
minversion = "6.2.5"
|
|
addopts ="-r a --capture=no -vv --color=yes"
|
|
|
|
|