Skip to content

Commit

Permalink
tempo fix for win (pybuild)
Browse files Browse the repository at this point in the history
Предлагаю пока так отрубить для винды. Хочется, чтобы покрытие работало
commit_hash:9b3ec4a246f6597795dc0b2d12d6524bb688e129
  • Loading branch information
kuzmich321 committed Nov 22, 2024
1 parent 07b3022 commit 214785f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build/plugins/pybuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,11 @@ def py_program(unit, py3):
if unit.get('PYTHON_SQLITE3') != 'no':
peers.append('contrib/tools/python/src/Modules/_sqlite')
unit.onpeerdir(peers)
unit.onwindows_long_path_manifest()

# DEVTOOLSSUPPORT-53161
if os.name == 'nt':
unit.onwindows_long_path_manifest()

if unit.get('MODULE_TYPE') == 'PROGRAM': # can not check DLL
unit.onadd_check_py_imports()

Expand Down

0 comments on commit 214785f

Please sign in to comment.