summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-09-30 13:41:18 -0500
committerToby Vincent <tobyv13@gmail.com>2021-09-30 13:41:18 -0500
commitb3359393525b827d75a5b0745c3d1d8c9362dc5e (patch)
tree00c1244674ff311e79c0db96778054a9432bc3ec /.vscode/launch.json
parenteb2bb60f1ce8cb65ff05c9eb73c19255c574e850 (diff)
moved python files into src folderHEADmain
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json46
1 files changed, 38 insertions, 8 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 9e1925d..faec480 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -9,22 +9,52 @@
"type": "python",
"request": "launch",
"program": "pacman.py",
- "args": ["-p",
- "ReflexAgent",
- "-l",
- "testClassic"
- ]
+ "cwd": "${workspaceFolder}/src",
+ "args": [
+ "-p",
+ "ReflexAgent",
+ "-l",
+ "testClassic"
+ ]
},
{
"name": "autograder",
"type": "python",
"request": "launch",
"program": "autograder.py",
+ "cwd": "${workspaceFolder}/src",
"args": [
- "-q",
- "q2",
- "--no-graphics"
+ "${input:question}",
+ "${input:graphics}",
+ "--student-code=multiAgents.py",
]
}
+ ],
+ "inputs": [
+ {
+ "type": "pickString",
+ "id": "question",
+ "description": "Select a question to debug",
+ "default": "",
+ "options": [
+ "",
+ "--question=q1",
+ "--question=q2",
+ "--question=q3",
+ "--question=q4",
+ "--question=q5",
+ "--question=extra",
+ ]
+ },
+ {
+ "type": "pickString",
+ "id": "graphics",
+ "description": "Skip graphics?",
+ "default": "--no-graphics",
+ "options": [
+ "",
+ "--no-graphics",
+ ]
+ },
]
} \ No newline at end of file