File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,6 @@ module.exports = function(ctx, cb) {
13
13
14
14
var CREATE_VIRTUAL_ENV = VIRTUAL_ENV_CMD + " && " + VIRTUAL_PIP + " install -r requirements.txt && "
15
15
16
- ctx . addDetectionRule ( {
17
- filename :"setup.py" ,
18
- exists :true ,
19
- language :"python" ,
20
- framework :null ,
21
- prepare :CREATE_VIRTUAL_ENV + VIRTUAL_PYTHON + " setup.py develop" ,
22
- test :VIRTUAL_PYTHON + " setup.py test" ,
23
- } )
24
-
25
16
ctx . addDetectionRule ( {
26
17
filename :"setup.py" ,
27
18
grep :/ p y r a m i d / i,
@@ -40,6 +31,16 @@ module.exports = function(ctx, cb) {
40
31
test :VIRTUAL_PYTHON + " manage.py test" ,
41
32
} )
42
33
34
+ ctx . addDetectionRule ( {
35
+ filename :"setup.py" ,
36
+ exists :true ,
37
+ language :"python" ,
38
+ framework :null ,
39
+ prepare :CREATE_VIRTUAL_ENV + VIRTUAL_PYTHON + " setup.py develop" ,
40
+ test :VIRTUAL_PYTHON + " setup.py test" ,
41
+ } )
42
+
43
+
43
44
console . log ( "strider-python extension loaded" )
44
45
cb ( null , null )
45
46
You can’t perform that action at this time.
0 commit comments