We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff6aaf1 commit e08fa01Copy full SHA for e08fa01
requirements-dev.txt
@@ -2,7 +2,7 @@ coverage==7.4.1
2
black==24.2.0
3
flake8==7.0.0
4
build==1.0.3
5
-twine==4.0.2
+twine==5.1.1
6
7
boto3==1.34.33
8
pony==0.7.17
serpens/testgres.py
@@ -10,6 +10,7 @@
10
11
database = None
12
schema = None
13
+testgres_startup_delay = int(os.getenv("TESTGRES_STARTUP_DELAY", 1))
14
15
16
def docker_shell(cmd, output=True):
@@ -59,7 +60,7 @@ def docker_init():
59
60
docker_start()
61
62
while docker_pg_isready():
- time.sleep(1)
63
+ time.sleep(testgres_startup_delay)
64
65
docker_pg_user_path()
66
port = docker_port()
0 commit comments