File tree Expand file tree Collapse file tree 1 file changed +17
-7
lines changed Expand file tree Collapse file tree 1 file changed +17
-7
lines changed Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"settings" : {
13
- "python.defaultInterpreterPath" : " ~/miniforge3/envs/codeflash312/bin/python" ,
14
13
"python.terminal.activateEnvironment" : true ,
15
14
"python.testing.pytestEnabled" : true ,
16
- "python.testing.pytestArgs" : [" tests/" , " -vv" ],
15
+ "python.testing.pytestArgs" : [
16
+ " tests/" ,
17
+ " -vv" ,
18
+ " --ignore" ,
19
+ " tests/benchmarks/"
20
+ ],
17
21
},
18
22
"launch" : {
19
- "version" : " 0.2.0" ,
20
23
"configurations" : [
21
24
{
22
25
"name" : " bubble_sort" ,
62
65
},
63
66
},
64
67
{
65
- "name" : " bubble_sort --file bubble_sort.py (MBR) " ,
68
+ "name" : " run codeflash in custom directory " ,
66
69
"type" : " debugpy" ,
67
70
"request" : " launch" ,
68
71
"program" : " ${workspaceFolder:codeflash}/codeflash/main.py" ,
69
72
"args" : [
70
73
" --all" ,
71
74
],
72
- "cwd" : " /Users/krrt7/Desktop/work/my-best-repo " ,
75
+ "cwd" : " ${input:chooseCwd} " ,
73
76
"console" : " integratedTerminal" ,
74
77
"env" : {
75
78
"PYTHONUNBUFFERED" : " 1"
76
- },
79
+ }
80
+ }
81
+ ],
82
+ "inputs" : [
83
+ {
84
+ "id" : " chooseCwd" ,
85
+ "type" : " promptString" ,
86
+ "description" : " Enter the working directory for codeflash" ,
77
87
}
78
88
]
79
- }
89
+ },
80
90
}
You can’t perform that action at this time.
0 commit comments