-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy patheztable.sublime-project
More file actions
93 lines (84 loc) · 2.16 KB
/
eztable.sublime-project
File metadata and controls
93 lines (84 loc) · 2.16 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"folders":
[
{
"path": "src",
"file_exclude_patterns": ["*.pyc"]
}
],
"settings":
{
"python_test_runner":
{
"before_test": "source .env/bin/activate",
"after_test": "deactivate",
"test_root": "src/toytable_tests",
"test_delimeter": ":",
"test_command": "nosetests"
},
"pylinter":
{
"ignore":["C"],
"use_icons":true
}
},
"build_systems":
[
{
"name":"Virtualenv 2.7",
"cmd":
[
"${project_path}/bin/python2.7",
"$file"
]
},
{
"name":"Virtualenv 3.3",
"working_dir": "${project_path:${folder}}/src",
"cmd":
[
"${project_path}/bin/python3.3",
"-u",
"$file"
]
},
{
"name":"Nose 2.7 Tests",
"working_dir": "${project_path:${folder}}/src",
"cmd":
[
"${project_path}/bin/nosetests-2.7", "${project_path}/src/toytable_tests"
]
},
{
"name":"Nose 3.3 Tests",
"working_dir": "${project_path:${folder}}/src",
"cmd":
[
"${project_path}/bin/nosetests-3.3", "${project_path}/src/toytable_tests"
]
},
{
"name":"Coverage 2.7",
"working_dir": "${project_path:${folder}}/src",
"cmd":
[
"${project_path}/bin/nosetests-2.7",
"${project_path}/src/toytable_tests",
"--cover-package=toytable",
"--with-coverage"
]
},
{
"name":"Coverage 3.3",
"working_dir": "${project_path:${folder}}/src",
"cmd":
[
"${project_path}/bin/nosetests-3.3",
"${project_path}/src/toytable_tests",
"--cover-package=toytable",
"--with-coverage"
]
},
]
}