-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathairstorm.sublime-project
60 lines (60 loc) · 1.08 KB
/
airstorm.sublime-project
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
{
"build_systems": [
{
"cmd": [
"pip",
"install",
"--editable",
".[ci]"
],
"name": "Install requirements with PyPI",
"path": "$WORKON_HOME/airstorm/bin:$PATH",
"windows": {
"path": "$WORKON_HOME/airstorm/Scripts;$PATH",
},
"working_dir": "$project_path"
},
{
"cmd": [
"pytest",
"--cov-report=html",
"--cov=airstorm"
],
"name": "Test with pytest",
"path": "$WORKON_HOME/airstorm/bin:$PATH",
"windows": {
"path": "$WORKON_HOME/airstorm/Scripts;$PATH",
},
"working_dir": "$project_path"
},
{
"cmd": [
"sphinx-build",
"./docs/source",
"./docs/build"
],
"name": "Document with Sphinx",
"path": "$WORKON_HOME/airstorm/bin:$PATH",
"windows": {
"path": "$WORKON_HOME/airstorm/Scripts;$PATH",
},
"working_dir": "$project_path"
}
],
"folders": [
{
"file_exclude_patterns": [
".coverage"
],
"folder_exclude_patterns": [
"__pycache__",
"htmlcov",
"*.egg-info",
".pytest_cache",
"build"
],
"path": "."
}
],
"virtualenv": "~/.virtualenvs/airstorm"
}