diff options
author | serjflint <serjflint@yandex-team.com> | 2024-02-21 10:20:34 +0300 |
---|---|---|
committer | serjflint <serjflint@yandex-team.com> | 2024-02-21 10:36:02 +0300 |
commit | a1553506adf1e8b9ad08854f902771b6208142db (patch) | |
tree | 99898e342fbf5d03f34d788ca66f1f0143e45af2 /build/conf/python.conf | |
parent | 87190c082e81c449f0e200fe241490434c99f9cc (diff) | |
download | ydb-a1553506adf1e8b9ad08854f902771b6208142db.tar.gz |
fix ruff: cache workaround
ab4d963587a138f7006ed415c33a2dc8c35a75d8
Diffstat (limited to 'build/conf/python.conf')
-rw-r--r-- | build/conf/python.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/conf/python.conf b/build/conf/python.conf index 6ca4fae83a..26b1ee8287 100644 --- a/build/conf/python.conf +++ b/build/conf/python.conf @@ -238,11 +238,13 @@ macro STYLE_PYTHON(pyproject...) { # tag:python-specific tag:test STYLE_RUFF_VALUE=no +RUFF_CONFIG_PATHS_FILE=build/config/tests/ruff/ruff_config_paths.json ### @usage: STYLE_RUFF() ### ### Check python3 sources for style issues using ruff. macro STYLE_RUFF() { SET(STYLE_RUFF_VALUE yes) + SET_APPEND(_MAKEFILE_INCLUDE_LIKE_DEPS ${RUFF_CONFIG_PATHS_FILE}) } # tag:python-specific tag:test |