diff options
author | nkozlovskiy <[email protected]> | 2023-09-29 15:21:34 +0300 |
---|---|---|
committer | nkozlovskiy <[email protected]> | 2023-09-29 15:45:29 +0300 |
commit | c221c8b12c8869a45d9d1d87bdc219cdb86f89ae (patch) | |
tree | ce65439ffa173ff7d235ce5099f62e7aabf40ed1 | |
parent | aea193b8f0b37198b710ab6b7511c13be4edd89b (diff) |
add py_style, fake8 deps to ydb
-rw-r--r-- | build/config/tests/flake8/ya.make | 4 | ||||
-rw-r--r-- | build/config/tests/py_style/config.toml | 3 | ||||
-rw-r--r-- | build/config/tests/py_style/ya.make | 7 |
3 files changed, 14 insertions, 0 deletions
diff --git a/build/config/tests/flake8/ya.make b/build/config/tests/flake8/ya.make new file mode 100644 index 00000000000..c4ba4105e00 --- /dev/null +++ b/build/config/tests/flake8/ya.make @@ -0,0 +1,4 @@ +OWNER( + g:python-committee + g:yatest +) diff --git a/build/config/tests/py_style/config.toml b/build/config/tests/py_style/config.toml new file mode 100644 index 00000000000..6ae249d042e --- /dev/null +++ b/build/config/tests/py_style/config.toml @@ -0,0 +1,3 @@ +[tool.black] +line-length = 120 +skip-string-normalization = true diff --git a/build/config/tests/py_style/ya.make b/build/config/tests/py_style/ya.make new file mode 100644 index 00000000000..6a6a2875588 --- /dev/null +++ b/build/config/tests/py_style/ya.make @@ -0,0 +1,7 @@ +LIBRARY() + +RESOURCE_FILES( + config.toml +) + +END() |