Skip to content

Commit b9ad146

Browse files
builderphracek
authored andcommitted
Add podman_logs to PodmanWrapper Line
Signed-off-by: builder <build@localhost>
1 parent 348bdbc commit b9ad146

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

container_ci_suite/container_lib.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@ def test_db_connection(
362362
database: str = "db",
363363
max_attempts: int = 60,
364364
sleep_time: int = 3,
365+
sql_cmd: Optional[str] = None,
365366
) -> bool:
366367
return self.db_lib.test_connection(
367368
container_ip=container_ip,
@@ -370,6 +371,7 @@ def test_db_connection(
370371
database=database,
371372
max_attempts=max_attempts,
372373
sleep_time=sleep_time,
374+
sql_cmd=sql_cmd,
373375
)
374376

375377
def assert_container_creation_fails(

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def get_requirements():
4343
description="A python3 container CI tool for testing images.",
4444
long_description=long_description,
4545
long_description_content_type="text/markdown",
46-
version="0.10.0",
46+
version="0.11.0",
4747
keywords="tool,containers,images,tests",
4848
packages=find_packages(exclude=["tests"]),
4949
url="https://github.com/sclorg/container-ci-suite",

0 commit comments

Comments
 (0)