-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Format airflow-dags example module (#99)
* chore: Format airflow-dags examplemodule * fix coverage
- Loading branch information
1 parent
89e277a
commit ac4c715
Showing
9 changed files
with
63 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,42 @@ | ||
[tool.black] | ||
[tool.ruff] | ||
exclude = [ | ||
".eggs", | ||
".git", | ||
".hg", | ||
".mypy_cache", | ||
".ruff_cache", | ||
".tox", | ||
".venv", | ||
".env", | ||
"_build", | ||
"buck-out", | ||
"build", | ||
"dist", | ||
"codeseeder.out", | ||
] | ||
line-length = 120 | ||
target-version = ["py36", "py37", "py38"] | ||
exclude = ''' | ||
/( | ||
\.eggs | ||
| \.git | ||
| \.hg | ||
| \.mypy_cache | ||
| \.tox | ||
| \.venv | ||
| \.env | ||
| _build | ||
| buck-out | ||
| build | ||
| dist | ||
| codeseeder.out | ||
)/ | ||
''' | ||
target-version = "py38" | ||
|
||
[tool.isort] | ||
multi_line_output = 3 | ||
include_trailing_comma = true | ||
force_grid_wrap = 0 | ||
use_parentheses = true | ||
ensure_newline_before_comments = true | ||
line_length = 120 | ||
src_paths = ["example_dags"] | ||
py_version = 36 | ||
skip_gitignore = false | ||
[tool.ruff.lint] | ||
select = ["F", "I", "E", "W"] | ||
fixable = ["ALL"] | ||
|
||
[tool.mypy] | ||
python_version = "3.8" | ||
strict = true | ||
ignore_missing_imports = true | ||
disallow_untyped_decorators = false | ||
exclude = "codeseeder.out/|example_dags/" | ||
warn_unused_ignores = false | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "-v --cov=. --cov-report term --cov-config=coverage.ini" | ||
addopts = "-v --cov=. --cov-report term" | ||
pythonpath = [ | ||
"." | ||
] | ||
] | ||
|
||
[tool.coverage.run] | ||
omit = ["tests/*", "dags/*"] | ||
|
||
[tool.coverage.report] | ||
fail_under = 80 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters