RTSA-lab02-SchedTest/.vscode/launch.json

26 lines
754 B
JSON

{
// 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": [
{
"name": "10Tasks",
"type": "python",
"request": "launch",
"program": "${cwd}/SchedTest.py",
"args": ["--i", "task_sets/10tasks.txt", "--n", "10"],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "100Tasks",
"type": "python",
"request": "launch",
"program": "${cwd}/SchedTest.py",
"args": ["--i", "task_sets/100tasks.txt", "--n", "100"],
"console": "integratedTerminal",
"justMyCode": true
}
]
}