Python+VSCode+Unitテスト+Debugするときにライブラリモジュールの中までステップインする設定
経緯
PythonのUnittestをVSCodeでDebug実行した際、importした外部のライブラリモジュールまではステップインできませんでした。
その際、DEBUG CONSOLEには下記のメッセージが表示されます。
Frame skipped from debugging during step-in.
Note: may have been skipped because of "justMyCode" option (default == true). Try setting "justMyCode": false in the debug configuration (e.g., launch.json).
justMyCode: false
設定は知っています。Debug実行時に外部のライブラリモジュールにステップインするための設定です。
ですが、VSCodeのテスト機能の場合はどう記述するのでしょうか?
(参考)Debug Test起動スイッチたち
答え
launch.json
への記述で、"request": "test"
、 "justMyCode": false
とします。
これで、テストをデバッグ実行した際に適用されます。
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Python Unittest",
"type": "python",
"request": "test",
"justMyCode": false
},
# 以下省略
Author And Source
この問題について(Python+VSCode+Unitテスト+Debugするときにライブラリモジュールの中までステップインする設定), 我々は、より多くの情報をここで見つけました https://qiita.com/shinsaka/items/4980261f8a40a6de20a7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .