From af6c467a42c5ba33bf07517b1d4a0e5cd2decf24 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Apr 27 2017 21:44:31 +0000 Subject: Report base_startup and more base_initial_setup results Summary: Now the artwork requirements have been split out of these tests, we can reasonably report results for them from install_default and install_no_user jobs. As checkwiki reports, reporting from Everything and Atomic jobs will fail, but this isn't really a problem. We should probably have a 'Minimal' column for x86_64 (but then we'd have to invent a '$SUBVARIANT_OR_MINIMAL$' or '$PACKAGE_SET$' substitution, or something, to get from 'Everything' to 'Minimal'), and we could have an Atomic column, but I don't think we really need to block on either of those things. For now this will get us all the most important results. Test Plan: Use checkwiki (though it's not quite accurate ATM because this diff is written to the new Base matrix, but the current Base page is built from the old matrix) and good ol' eyeball... Reviewers: jsedlak, jskladan Reviewed By: jsedlak Subscribers: tflink Differential Revision: https://phab.qa.fedoraproject.org/D1189 --- diff --git a/fedora_openqa/conf_test_suites.py b/fedora_openqa/conf_test_suites.py index 17ba37a..a97db83 100644 --- a/fedora_openqa/conf_test_suites.py +++ b/fedora_openqa/conf_test_suites.py @@ -317,6 +317,11 @@ TESTCASES = { "env": "$SUBVARIANT$", "type": "Base", }, + "QA:Testcase_base_startup": { + "section": "$RUNARCH$", + "env": "$SUBVARIANT$", + "type": "Base", + }, "QA:Testcase_base_selinux": { "section": "$RUNARCH$", "env": "$SUBVARIANT$", @@ -505,6 +510,7 @@ TESTSUITES = { "QA:Testcase_partitioning_guided_empty", "QA:Testcase_Anaconda_User_Interface_Graphical", "QA:Testcase_Anaconda_user_creation", + "QA:Testcase_base_startup", ], "install_default_upload": [ "QA:Testcase_Boot_default_install", @@ -512,6 +518,7 @@ TESTSUITES = { "QA:Testcase_partitioning_guided_empty", "QA:Testcase_Anaconda_User_Interface_Graphical", "QA:Testcase_Anaconda_user_creation", + "QA:Testcase_base_startup", ], "install_arm_image_deployment_upload": [ "QA:Testcase_arm_image_deployment", @@ -889,6 +896,12 @@ TESTSUITES = { "QA:Testcase_Anaconda_user_creation", "QA:Testcase_Package_Sets_Minimal_Package_Install", ], + "install_no_user": [ + "QA:Testcase_install_to_VirtIO", + "QA:Testcase_partitioning_guided_empty", + "QA:Testcase_Anaconda_User_Interface_Graphical", + "QA:Testcase_base_initial_setup", + ], } # vim: set textwidth=120 ts=8 et sw=4: