From 8d4d96c0baba51f29f1853b40737ef39346ce6a3 Mon Sep 17 00:00:00 2001
From: voic00 <voic00@mi.fu-berlin.de>
Date: Sun, 2 Jun 2024 11:59:26 +0200
Subject: [PATCH] =?UTF-8?q?hzfg:=20launch=20config,=20sodass=20man=20im=20?=
 =?UTF-8?q?vscode=20debugger=20per=20dropdown=20die=20richtige=20variante?=
 =?UTF-8?q?=20ausw=C3=A4hlen=20kann?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .vscode/launch.json | 50 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)
 create mode 100644 .vscode/launch.json

diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..8b0e585
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,50 @@
+{
+    "version": "0.0.1",
+    "configurations": [
+        {
+            "name": "Python: current w/ tiny complete_4_5.gr instance",
+            "type": "debugpy",
+            "request": "launch",
+            "program": "${file}",
+            "console": "integratedTerminal",
+            "args": [
+                "-f",
+                "./src/githubtests/tiny_test_set/instances/complete_4_5.gr"
+            ]
+        },
+        {
+            "name": "Python: current w/ all mytests instances",
+            "type": "debugpy",
+            "request": "launch",
+            "program": "${file}",
+            "console": "integratedTerminal",
+            "args": [
+                "-f",
+                "./src/mytests/instances/"
+            ]
+        }, 
+        {
+            "name": "Python: current w/ medium 10.gr instance",
+            "type": "debugpy",
+            "request": "launch",
+            "program": "${file}",
+            "console": "integratedTerminal",
+            "args": [
+                "-f",
+                "./src/githubtests/medium_test_set/instances/10.gr"
+            ]
+        },
+        {
+            "name": "Python: current w/ all medium instances",
+            "type": "debugpy",
+            "request": "launch",
+            "program": "${file}",
+            "console": "integratedTerminal",
+            "args": [
+                "-f",
+                "./src/githubtests/medium_test_set/instances/"
+            ]
+        },
+        
+    ]
+}
\ No newline at end of file
-- 
GitLab