From ec5addc0638b8a0af1221d333c99441f00cdd99f Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 20 May 2015 13:03:32 -0600 Subject: [PATCH] Log pulpito URL after scheduling Signed-off-by: Zack Cerza --- teuthology/suite.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index 4c8ac2f11d..faedbd3acd 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -22,7 +22,7 @@ import matrix from . import lock from .config import config, JobConfig from .exceptions import BranchNotFoundError, ScheduleFailError -from .misc import deep_merge +from .misc import deep_merge, get_results_url from .repo_utils import fetch_qa_suite, fetch_teuthology from .task.install import get_flavor @@ -308,6 +308,9 @@ def prepare_and_schedule(job_config, suite_repo_path, base_yaml_paths, limit, subprocess.check_call( args=arg, ) + results_url = get_results_url(job_config.name) + if results_url: + log.info("Test results viewable at %s", results_url) def schedule_fail(message, name=''): -- 2.39.5