File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 33
33
test : dotnet/.ok erlang/.ok java/.ok python/.ok php/.ok ruby/.ok python-puka/.ok
34
34
RUBYVER=$(RUBYVER ) python test.py
35
35
36
- RABBITVER: =` curl -s " http://www.rabbitmq.com/releases/rabbitmq-server/?C=N;O=D;F=0;V=1" | grep -oE ' ([0-9\.]{5,})' | head -n 1 `
36
+ RABBITVER: =$( shell curl -s "http://www.rabbitmq.com/releases/rabbitmq-server/?C=N;O=D;F=0;V=1" | grep -oE '([0-9\.]{5,}) ' | head -n 1)
37
37
R =http://www.rabbitmq.com/releases
38
38
39
39
DVER =$(RABBITVER )
Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ def run(cmd, **kwargs):
16
16
out = p .stdout .read ()
17
17
err = p .stderr .read ()
18
18
19
- time .sleep (0.5 )
19
+ time .sleep (0.2 )
20
20
return p .returncode , out + '\n ' + err
21
21
22
22
def spawn (cmd , ** kwargs ):
23
23
p = subprocess .Popen (cmd .split (),
24
24
stdout = subprocess .PIPE ,
25
25
stderr = subprocess .PIPE ,
26
26
** kwargs )
27
- time .sleep (1.0 )
27
+ time .sleep (0.5 )
28
28
return p
29
29
30
30
def wait (p , match ):
You can’t perform that action at this time.
0 commit comments