forked from cohenlabUNC/clpipe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclpipe.code-workspace
59 lines (59 loc) · 1.12 KB
/
clpipe.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
{
"folders": [{
"path": "."
}],
"settings": {
"python.linting.flake8Enabled": true,
"python.linting.enabled": false,
"python.testing.pytestArgs": [
"tests",
"--basetemp", "tests/temp"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"editor.rulers": [
88
],
"restoreTerminals.terminals": [
{
"splitTerminals": [
{
"name": "Python Shell", "commands": ["python"]
}]
},
{
"splitTerminals": [
{
"name": "Project Root"
}]
}
],
"editor.dropIntoEditor.enabled": false,
"githubPullRequests.ignoredPullRequestBranches": [
"master"
],
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none"
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Pytest",
"type": "python",
"request": "launch",
"program": "pytest tests",
"console": "integratedTerminal"
}
]
}
}