Skip to content

Commit

Permalink
Tri up time (#1623)
Browse files Browse the repository at this point in the history
* skip download step, that is not allowed in CI

* double time to start for triton
  • Loading branch information
jperez999 authored Jul 19, 2022
1 parent 298aec8 commit 6c32ec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def bench_info():
bInfo = BenchmarkInfo(
machineName=socket.gethostname(),
cudaVer=cuda_version,
osType="%s" % (uname.system),
osType=f"{uname.system}",
pythonVer=platform.python_version(),
commitHash=commitHash,
commitTime=commitTime,
Expand Down Expand Up @@ -307,7 +307,7 @@ def run_triton_server(
try:
with grpcclient.InferenceServerClient("localhost:8001") as client:
# wait until server is ready
for _ in range(60):
for _ in range(120):
if process.poll() is not None:
retcode = process.returncode
raise RuntimeError(f"Tritonserver failed to start (ret={retcode})")
Expand Down

0 comments on commit 6c32ec3

Please sign in to comment.