diff options
author | exprmntr <exprmntr@yandex-team.ru> | 2022-02-10 16:46:50 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:50 +0300 |
commit | a6396ea4e82c2605dcf9a11ebc4c289d0b1c734c (patch) | |
tree | 49e222ea1c5804306084bb3ae065bb702625360f /build/plugins/pybuild.py | |
parent | 078ddb2fb76387cae14e8c3ceb5a896009a5a539 (diff) | |
download | ydb-a6396ea4e82c2605dcf9a11ebc4c289d0b1c734c.tar.gz |
Restoring authorship annotation for exprmntr <exprmntr@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'build/plugins/pybuild.py')
-rw-r--r-- | build/plugins/pybuild.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build/plugins/pybuild.py b/build/plugins/pybuild.py index 4dbc53cfd1..f32a2d39a0 100644 --- a/build/plugins/pybuild.py +++ b/build/plugins/pybuild.py @@ -128,7 +128,7 @@ def add_python_lint_checks(unit, py_ver, files): # temporary allowed, TODO: remove "taxi/uservices/", "travel/", - "market/report/lite/", # MARKETOUT-38662, deadline: 2021-08-12 + "market/report/lite/", # MARKETOUT-38662, deadline: 2021-08-12 "passport/backend/oauth/", # PASSP-35982 ) @@ -522,15 +522,15 @@ def onpy_srcs(unit, *args): unit.onsrcs(['GLOBAL', '{}.fbs.pysrc'.format(pysrc_base_name)]) -def _check_test_srcs(*args): +def _check_test_srcs(*args): used = set(args) & {"NAMESPACE", "TOP_LEVEL", "__main__.py"} if used: param = list(used)[0] ymake.report_configure_error('in TEST_SRCS: you cannot use {} here - it would broke testing machinery'.format(param)) - - -def ontest_srcs(unit, *args): - _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)) |