forked from willsheffler/worms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworms.sublime-project
29 lines (29 loc) · 1.06 KB
/
worms.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
{
"folders":
[
{
"path": ".",
"folder_exclude_patterns" : [".cache", ".tox", "build", "dist",
"*.egg-info", "__pycache__", "_build"]
}
],
"build_systems":
[
{
"name": "pytest",
"shell_cmd": "cd $folder; /Users/natteruw/anaconda3/envs/wormsdev/bin/python -m pytest worms/tests/test_una2d.py --duration=10 &> log/sublime_build.log"
},
{
"name": "worms_peace_sign",
"shell_cmd": "cd $folder; echo pwd: `pwd` > log/sublime_build.log; echo python: `which python` >> log/sublime_build.log; PYTHONPATH=. python examples/worms_peace_sign.py &>> log/sublime_build.log"
},
{
"name": "pytest util",
"shell_cmd": "cd $folder; echo pwd: `pwd` > log/sublime_build.log; echo python: `which python` >> log/sublime_build.log; pytest --duration=10 worms/tests/test_util.py &>> log/sublime_build.log"
},
{
"name": "make_docs",
"shell_cmd": "cd $folder; make docs &> log/sublime_build.log"
}
]
}