Skip to content

Commit fb0bdff

Browse files
committed
fix params type
1 parent 9443832 commit fb0bdff

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

scripts/cli.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import socket
12
import sys
23
from pathlib import Path
34

@@ -93,6 +94,8 @@ def new_trigger_builds(tc_user: str, tc_password: str):
9394
tc = TeamCity("http://tc", auth=(tc_user, tc_password)) # noqa
9495
import rpdb
9596

97+
ip = socket.gethostbyname(socket.gethostname())
98+
click.echo(f"IP: {ip}")
9699
rpdb.set_trace("0.0.0.0")
97100
new_main(tc_user, tc_password)
98101

scripts/trigger_auto_tests/utils/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def is_build_success(build: Build) -> bool:
102102

103103
class AutoTestsInfo(BaseModel):
104104
number: int
105-
params: dict[str, str]
105+
params: dict
106106
vcs_url: str
107107
commit_id: str
108108
path: Path

0 commit comments

Comments
 (0)