-
Notifications
You must be signed in to change notification settings - Fork 8
/
worms.sublime-project
54 lines (54 loc) · 1.47 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
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
{
"build_systems":
[
{
"name": "util_runtests.py",
"shell_cmd": "cd $folder; python util/runtests.py $file &> log/sublime_build.log"
},
{
"name": "filter_audit.py",
"shell_cmd": "cd $folder; PYTHONPATH=. python examples/filter_audit.py &> log/sublime_build.log"
},
{
"name": "worms_prefilter_test",
"shell_cmd": "cd $folder; echo pwd: `pwd` > log/sublime_build.log; echo python: `which python` >> log/sublime_build.log; NUMBA_OPT=1 PYTHONPATH=. python examples/prefilter_test.py &>> log/sublime_build.log"
},
{
"name": "worms_peacemaker",
"shell_cmd": "cd $folder; echo pwd: `pwd` > log/sublime_build.log; echo python: `which python` >> log/sublime_build.log; NUMBA_OPT=1 PYTHONPATH=. python examples/peacemaker.py &>> log/sublime_build.log"
},
{
"name": "make_docs",
"shell_cmd": "cd $folder; make docs &> log/sublime_build.log"
},
{
"name": "test_plug_from_olig",
"shell_cmd": "cd /home/sheffler/debug/plug_from_oligomer; python ~/src/worms/worms/app/plug_from_oligomer.py @input/test.flags --cachedirs cache --run_cache runcache.pickle --verbosity 2 --monte_carlo 0 --parallel 0 @input/test2.flags &> log/sublime_build.log"
}
],
"folders":
[
{
"file_exclude_patterns":
[
"*~",
".*"
],
"folder_exclude_patterns":
[
".cache",
".tox",
"build",
"dist",
"*.egg-info",
"__pycache__",
"_build",
".*"
],
"path": "."
},
{
"path": "/home/sheffler/debug/worms_stack"
}
]
}