From c2d8335cc50d086167b391f4508299f21cd760da Mon Sep 17 00:00:00 2001 From: Michael <35783820+mib1185@users.noreply.github.com> Date: Sun, 10 Jul 2022 23:06:27 +0200 Subject: [PATCH] Add "Home Assistant (skip pip)" to VS Code launch.json (#74887) --- .vscode/launch.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index e8bf893e0c9..3cec89cc7e6 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -12,6 +12,14 @@ "justMyCode": false, "args": ["--debug", "-c", "config"] }, + { + "name": "Home Assistant (skip pip)", + "type": "python", + "request": "launch", + "module": "homeassistant", + "justMyCode": false, + "args": ["--debug", "-c", "config", "--skip-pip"] + }, { // Debug by attaching to local Home Asistant server using Remote Python Debugger. // See https://www.home-assistant.io/integrations/debugpy/