Give PostGIS more time to startup

pull/351/head
lukasmartinelli 2016-06-14 20:39:15 +02:00
rodzic d6da42c012
commit 989881b1d8
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -51,7 +51,8 @@ def test_postgis_startup():
dc = DockerCompose()
dc.remove_all()
dc.up('postgis')
time.sleep(5)
# PostGIS can take a long time to get ready
time.sleep(10)
@pytest.mark.run(order=2)