Raised the default timeout for calling openscad to make tests not fail
This commit is contained in:
parent
4387aa5f01
commit
dab5a140ef
|
@ -29,7 +29,7 @@ def collect_test_modules(dirpath=None):
|
||||||
|
|
||||||
class Timeout(Exception): pass
|
class Timeout(Exception): pass
|
||||||
|
|
||||||
def call_openscad(path, stlpath, timeout=1):
|
def call_openscad(path, stlpath, timeout=5):
|
||||||
command = ['openscad', '-s', str(stlpath), str(path)]
|
command = ['openscad', '-s', str(stlpath), str(path)]
|
||||||
print command
|
print command
|
||||||
if timeout:
|
if timeout:
|
||||||
|
@ -37,7 +37,7 @@ def call_openscad(path, stlpath, timeout=1):
|
||||||
proc = Popen(command,
|
proc = Popen(command,
|
||||||
stdout=PIPE, stderr=PIPE, close_fds=True)
|
stdout=PIPE, stderr=PIPE, close_fds=True)
|
||||||
calltime = time.time()
|
calltime = time.time()
|
||||||
time.sleep(0.01)
|
time.sleep(0.05)
|
||||||
#print calltime
|
#print calltime
|
||||||
while True:
|
while True:
|
||||||
if proc.poll() is not None:
|
if proc.poll() is not None:
|
||||||
|
|
Loading…
Reference in a new issue