bazel-contrib / bazel-contrib/rules_python
Exec py_test targets in a way that would work with --run_under=lldb
- 主要言語
- Starlark
- スター
- 688
- フォーク
- 721
- 平均マージ
- 15時間 7分
- マージ済み PR(30日)
- 76
説明
# 🚀 feature request
### Description
When you're debugging python targets that load python C extensions, it can be useful in general to run something like `lldb -- python3 -m pytest path/to/tests`. In bazel I would envision this as `bazel test --run_under=lldb :tests`, but this doesn't work currently since py_test execs a script with a shebang. I think in theory if py_test ran the equivalent of `python3 path/to/script` it could "just work" but I'm not sure.
### Describe alternatives you've considered
You can try to catch the process by launching the debugger elsewhere like `lldb --wait-for -n python3.11`, but this is a bit fragile since you could catch the wrong process
コントリビューションガイド
調査の方向性
Start at the py_test execution path and trace how `bazel test --run_under=lldb :tests` invokes the generated test script. Compare the current shebang-based execution with the requested `python3 path/to/script` behavior, then verify that a Python C-extension test starts under LLDB while ordinary py_test execution remains unchanged.
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- build-system, testing
- issue の種類
- 機能追加
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100