File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ infrastructure in your test setup method and then clean up everything in your te
252252from localstack.services import infra
253253
254254def setup():
255- infra.start_infra(asyncronous =True)
255+ infra.start_infra(asynchronous =True)
256256
257257def teardown():
258258 infra.stop_infra()
Original file line number Diff line number Diff line change @@ -468,12 +468,12 @@ def start_infra(asynchronous=False, apis=None):
468468 # install libs if not present
469469 install .install_components (apis )
470470 # Some services take a bit to come up
471- sleep_time = 3
471+ sleep_time = 5
472472 # start services
473473 thread = None
474474
475475 if 'elasticsearch' in apis or 'es' in apis :
476- sleep_time = max (sleep_time , 8 )
476+ sleep_time = max (sleep_time , 10 )
477477
478478 # loop through plugins and start each service
479479 for name , plugin in SERVICE_PLUGINS .items ():
Original file line number Diff line number Diff line change 7171 'Programming Language :: Python :: 3.3' ,
7272 'Programming Language :: Python :: 3.4' ,
7373 'Programming Language :: Python :: 3.6' ,
74+ 'Programming Language :: Python :: 3.7' ,
7475 'License :: OSI Approved :: Apache Software License' ,
7576 'Topic :: Software Development :: Testing' ,
7677 ]
You can’t perform that action at this time.
0 commit comments