Skip to content

Commit eddf803

Browse files
authored
Merge branch 'main' into disable-concolic
2 parents 2de45e8 + 9dbc536 commit eddf803

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

codeflash.code-workspace

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@
1010
}
1111
],
1212
"settings": {
13-
"python.defaultInterpreterPath": "~/miniforge3/envs/codeflash312/bin/python",
1413
"python.terminal.activateEnvironment": true,
1514
"python.testing.pytestEnabled": true,
16-
"python.testing.pytestArgs": ["tests/", "-vv"],
15+
"python.testing.pytestArgs": [
16+
"tests/",
17+
"-vv",
18+
"--ignore",
19+
"tests/benchmarks/"
20+
],
1721
},
1822
"launch": {
19-
"version": "0.2.0",
2023
"configurations": [
2124
{
2225
"name": "bubble_sort",
@@ -62,19 +65,26 @@
6265
},
6366
},
6467
{
65-
"name": "bubble_sort --file bubble_sort.py (MBR)",
68+
"name": "run codeflash in custom directory",
6669
"type": "debugpy",
6770
"request": "launch",
6871
"program": "${workspaceFolder:codeflash}/codeflash/main.py",
6972
"args": [
7073
"--all",
7174
],
72-
"cwd": "/Users/krrt7/Desktop/work/my-best-repo",
75+
"cwd": "${input:chooseCwd}",
7376
"console": "integratedTerminal",
7477
"env": {
7578
"PYTHONUNBUFFERED": "1"
76-
},
79+
}
80+
}
81+
],
82+
"inputs": [
83+
{
84+
"id": "chooseCwd",
85+
"type": "promptString",
86+
"description": "Enter the working directory for codeflash",
7787
}
7888
]
79-
}
89+
},
8090
}

0 commit comments

Comments
 (0)