]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Log pulpito URL after scheduling
authorZack Cerza <zack@redhat.com>
Wed, 20 May 2015 19:03:32 +0000 (13:03 -0600)
committerZack Cerza <zack@redhat.com>
Wed, 20 May 2015 21:37:04 +0000 (15:37 -0600)
Signed-off-by: Zack Cerza <zack@redhat.com>
teuthology/suite.py

index 4c8ac2f11d65fc09117b6214d1358c7958bc5f2c..faedbd3acd3feec6a165e23d707246b5d8592a1a 100644 (file)
@@ -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=''):