diff options
author | Dmitry Kopylov <kopylovd@gmail.com> | 2022-02-10 16:48:18 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:18 +0300 |
commit | 7230275728d34873cba1ba78bb68669b0c5faa31 (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /build/plugins/pybuild.py | |
parent | b2f5101486cc0de2e979c8ba9ada2109785bf5fd (diff) | |
download | ydb-7230275728d34873cba1ba78bb68669b0c5faa31.tar.gz |
Restoring authorship annotation for Dmitry Kopylov <kopylovd@gmail.com>. Commit 2 of 2.
Diffstat (limited to 'build/plugins/pybuild.py')
-rw-r--r-- | build/plugins/pybuild.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/build/plugins/pybuild.py b/build/plugins/pybuild.py index 51babe298e..f32a2d39a0 100644 --- a/build/plugins/pybuild.py +++ b/build/plugins/pybuild.py @@ -110,13 +110,13 @@ def has_pyx(args): def get_srcdir(path, unit): return rootrel_arc_src(path, unit)[:-len(path)].rstrip('/') -def add_python_lint_checks(unit, py_ver, files): +def add_python_lint_checks(unit, py_ver, files): def get_resolved_files(): - resolved_files = [] - for path in files: - resolved = unit.resolve_arc_path([path]) + resolved_files = [] + for path in files: + resolved = unit.resolve_arc_path([path]) if resolved.startswith('$S'): # path was resolved as source file. - resolved_files.append(resolved) + resolved_files.append(resolved) return resolved_files if unit.get('LINT_LEVEL_VALUE') == "none": @@ -141,7 +141,7 @@ def add_python_lint_checks(unit, py_ver, files): resolved_files = get_resolved_files() flake8_cfg = 'build/config/tests/flake8/flake8.conf' unit.onadd_check(["flake8.py{}".format(py_ver), flake8_cfg] + resolved_files) - + def is_py3(unit): return unit.get("PYTHON3") == "yes" @@ -532,7 +532,7 @@ def _check_test_srcs(*args): def ontest_srcs(unit, *args): _check_test_srcs(*args) if unit.get('PY3TEST_BIN' if is_py3(unit) else 'PYTEST_BIN') != 'no': - unit.onpy_srcs(["NAMESPACE", "__tests__"] + list(args)) + unit.onpy_srcs(["NAMESPACE", "__tests__"] + list(args)) def onpy_doctests(unit, *args): |