From 68c4799ab0b648fbe95f58b21683d00a56934b4e Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 7 Aug 2023 14:47:04 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(launch.json):=20update=20l?= =?UTF-8?q?aunch.json=20to=20include=20a=20new=20configuration=20for=20deb?= =?UTF-8?q?ugging=20Python=20tests=20=E2=9C=A8=20feat(launch.json):=20add?= =?UTF-8?q?=20a=20new=20configuration=20for=20debugging=20Python=20tests?= =?UTF-8?q?=20with=20the=20purpose=20of=20"debug-test"=20and=20console=20s?= =?UTF-8?q?et=20to=20"integratedTerminal"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index e09e76cc8..bb61b0b9e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,4 +1,5 @@ { + "version": "0.2.0", "configurations": [ { "name": "Debug Backend", @@ -38,6 +39,15 @@ "request": "launch", "url": "http://localhost:3000/", "webRoot": "${workspaceRoot}/src/frontend" + }, + { + "name": "Python: Debug Tests", + "type": "python", + "request": "launch", + "program": "${file}", + "purpose": ["debug-test"], + "console": "integratedTerminal", + "justMyCode": false } ] }