Skip to content

Commit e4b167c

Browse files
committed
tweaking
1 parent f9ef785 commit e4b167c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ all:
3333
test: dotnet/.ok erlang/.ok java/.ok python/.ok php/.ok ruby/.ok python-puka/.ok
3434
RUBYVER=$(RUBYVER) python test.py
3535

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)
3737
R=http://www.rabbitmq.com/releases
3838

3939
DVER=$(RABBITVER)

test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ def run(cmd, **kwargs):
1616
out = p.stdout.read()
1717
err = p.stderr.read()
1818

19-
time.sleep(0.5)
19+
time.sleep(0.2)
2020
return p.returncode, out + '\n' + err
2121

2222
def spawn(cmd, **kwargs):
2323
p = subprocess.Popen(cmd.split(),
2424
stdout=subprocess.PIPE,
2525
stderr=subprocess.PIPE,
2626
**kwargs)
27-
time.sleep(1.0)
27+
time.sleep(0.5)
2828
return p
2929

3030
def wait(p, match):

0 commit comments

Comments
 (0)