From e88ade716d45319e53e21a0f1b6af036341469d9 Mon Sep 17 00:00:00 2001 From: Jan Bouwhuis Date: Mon, 25 Mar 2024 11:25:46 +0100 Subject: [PATCH] Allow debugging tests by default in vscode (#114065) --- .devcontainer/devcontainer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 553f3bbdf0e..83aa88140cc 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -21,6 +21,7 @@ ], // Please keep this file in sync with settings in home-assistant/.vscode/settings.default.json "settings": { + "python.experiments.optOutFrom": ["pythonTestAdapter"], "python.pythonPath": "/usr/local/bin/python", "python.testing.pytestArgs": ["--no-cov"], "editor.formatOnPaste": false,