-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcodeflash.code-workspace
80 lines (80 loc) · 2.61 KB
/
codeflash.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"folders": [
{
"path": ".",
"name": "codeflash",
"extensions": [
"charliermarsh.ruff",
"ms-python.python",
]
}
],
"settings": {
"python.defaultInterpreterPath": "~/miniforge3/envs/codeflash312/bin/python",
"python.terminal.activateEnvironment": true,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": ["tests/", "-vv"],
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "bubble_sort",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder:codeflash}/codeflash/main.py",
"args": [
"--file",
"code_to_optimize/bubble_sort.py",
"--module-root",
"${workspaceFolder:codeflash}",
"--function",
"sorter",
"--test-framework",
"pytest",
"--tests-root",
"code_to_optimize/tests/pytest"
],
"cwd": "${workspaceFolder:codeflash}",
"console": "integratedTerminal",
"env": {
"PYTHONUNBUFFERED": "1"
},
},
{
"name": "bubble_sort -all",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder:codeflash}/codeflash/main.py",
"args": [
"--all",
"--test-framework",
"pytest",
"--tests-root",
"code_to_optimize/tests/pytest",
"--module-root",
"code_to_optimize"
],
"cwd": "${workspaceFolder:codeflash}",
"console": "integratedTerminal",
"env": {
"PYTHONUNBUFFERED": "1"
},
},
{
"name": "bubble_sort --file bubble_sort.py (MBR)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder:codeflash}/codeflash/main.py",
"args": [
"--all",
],
"cwd": "/Users/krrt7/Desktop/work/my-best-repo",
"console": "integratedTerminal",
"env": {
"PYTHONUNBUFFERED": "1"
},
}
]
}
}