-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskel.sublime-project
More file actions
36 lines (36 loc) · 883 Bytes
/
Copy pathskel.sublime-project
File metadata and controls
36 lines (36 loc) · 883 Bytes
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
{
"folders":[
{
"path": "."
}
],
"build_systems": [
{
"name": "Py: run current file",
"cmd": ["python", "-Xutf8", "$file"],
"working_dir": "$project_path",
"env": {
"PYTHONPATH": "$project_path:$project_path/src" // : a separator for Linux
},
"selector": "source.python"
},
{
"name": "PyTest: current file",
"cmd": ["python", "-m", "pytest", "-q", "$file"],
"working_dir": "$project_path",
"env": {
"PYTHONPATH": "$project_path:$project_path/src"
},
"selector": "source.python"
},
{
"name": "PyTest: whole project",
"cmd": ["python", "-m", "pytest", "-q"],
"working_dir": "$project_path",
"env": {
"PYTHONPATH": "$project_path:$project_path/src"
},
"selector": "source.python"
}
]
}