Skip to content

Commit c68f1df

Browse files
committed
revert change to healthcheck, because the nanoseconds were correct
1 parent 76aaf5e commit c68f1df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ def mysql_container(docker_client):
159159
remove=True,
160160
healthcheck={
161161
"test": ["CMD", "mysqladmin", "ping", "-h", "localhost"],
162-
"timeout": 30,
162+
"timeout": 30000000000, # 30s in nanoseconds
163163
"retries": 5,
164-
"interval": 15,
164+
"interval": 15000000000, # 15s in nanoseconds
165165
}
166166
)
167167

0 commit comments

Comments
 (0)