From 1f63d814ac1ce45dbc77ccd4f53b95a4e628dd95 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Tue, 3 Jan 2023 21:57:39 +0100 Subject: [PATCH] more launcher defined --- .vscode/launch.json | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index c356762..4d60bd7 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,7 +1,4 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ @@ -11,6 +8,27 @@ "request": "launch", "program": "main.py", "console": "integratedTerminal" + }, + { + "name": "Test gui", + "type": "python", + "request": "launch", + "program": "tests/test_gui.py", + "console": "integratedTerminal" + }, + { + "name": "Kivy gui", + "type": "python", + "request": "launch", + "program": "src/gui_kivy.py", + "console": "integratedTerminal" + }, + { + "name": "QT gui", + "type": "python", + "request": "launch", + "program": "src/pyside6/gui_pyside6.py", + "console": "integratedTerminal" } ] }