diff options
author | 2016-08-10 17:32:32 +0200 | |
---|---|---|
committer | 2016-08-10 17:32:32 +0200 | |
commit | 977d76102a2bc393c00f124947cb9639057fc47b (patch) | |
tree | 6411ef8c4e62772df256f4270dd86c6a03eac02e /utils/test/reporting/functest/reporting-status.py | |
parent | f0830fb30a41e6db542ce7c843c5819fcb205c9e (diff) |
Fix unknown projects in reporting
Change-Id: Ia3d21694b8bf5e7131110124a520ecc0b9234509
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'utils/test/reporting/functest/reporting-status.py')
-rw-r--r-- | utils/test/reporting/functest/reporting-status.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/utils/test/reporting/functest/reporting-status.py b/utils/test/reporting/functest/reporting-status.py index 622c375cc..7c943d8b3 100644 --- a/utils/test/reporting/functest/reporting-status.py +++ b/utils/test/reporting/functest/reporting-status.py @@ -99,8 +99,9 @@ for version in conf.versions: for test_case in testValid: test_case.checkRunnable(installer, s, test_case.getConstraints()) - logger.debug("testcase %s is %s" % + logger.debug("testcase %s (%s) is %s" % (test_case.getDisplayName(), + test_case.getName(), test_case.isRunnable)) time.sleep(1) if test_case.isRunnable: @@ -131,8 +132,10 @@ for version in conf.versions: for test_case in otherTestCases: test_case.checkRunnable(installer, s, test_case.getConstraints()) - logger.info("testcase %s is %s" % - (test_case.getName(), test_case.isRunnable)) + logger.debug("testcase %s (%s) is %s" % + (test_case.getDisplayName(), + test_case.getName(), + test_case.isRunnable)) time.sleep(1) if test_case.isRunnable: dbName = test_case.getDbName() |