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" } ] }