From 7399a52392d31a6eefa248ea7d7d1f8edfaca945 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Nov 06 2020 20:16:04 +0000 Subject: wiki reporting: fix remaining hardcoded x86_64 cases We had several wiki reporting config entries which hardcoded "x86_64" in the environment or section. This was always lazy and now we're testing aarch64 in production it's clearly wrong in each case. This will fix reporting of several results on aarch64. Signed-off-by: Adam Williamson --- diff --git a/src/fedora_openqa/conf_test_suites.py b/src/fedora_openqa/conf_test_suites.py index 4a97f68..706968d 100644 --- a/src/fedora_openqa/conf_test_suites.py +++ b/src/fedora_openqa/conf_test_suites.py @@ -62,7 +62,7 @@ TESTCASES = { }, "QA:Testcase_install_to_VirtIO": { "section": "Storage devices", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_partitioning_guided_empty": { @@ -97,17 +97,17 @@ TESTCASES = { }, "QA:Testcase_Anaconda_user_creation": { "section": "Miscellaneous", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_install_to_PATA": { "section": "Storage devices", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_install_to_SATA": { "section": "Storage devices", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_partitioning_guided_delete_all": { @@ -122,7 +122,7 @@ TESTCASES = { }, "QA:Testcase_install_to_SCSI": { "section": "Storage devices", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_Anaconda_updates.img_via_URL": { @@ -267,27 +267,27 @@ TESTCASES = { }, "QA:Testcase_upgrade_dnf_current_minimal": { "section": "Upgrade", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_upgrade_dnf_current_workstation": { "section": "Upgrade", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_upgrade_dnf_current_workstation_encrypted": { "section": "Upgrade", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_upgrade_dnf_current_server": { "section": "Upgrade", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_upgrade_dnf_current_kde": { "section": "Upgrade", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_upgrade_dnf_current_any": { @@ -297,27 +297,27 @@ TESTCASES = { }, "QA:Testcase_upgrade_dnf_previous_minimal": { "section": "Upgrade", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_upgrade_dnf_previous_workstation": { "section": "Upgrade", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_upgrade_dnf_previous_workstation_encrypted": { "section": "Upgrade", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_upgrade_dnf_previous_server": { "section": "Upgrade", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_upgrade_dnf_previous_kde": { "section": "Upgrade", - "env": "x86_64", + "env": "$RUNARCH$", "type": "Installation", }, "QA:Testcase_upgrade_dnf_previous_any": { @@ -496,7 +496,7 @@ TESTCASES = { "QA:Testcase_desktop_app_basic": { "env": "$SUBVARIANT$", "type": "Desktop", - "section": "Release-blocking desktops: x86 / x86_64", + "section": "$RUNARCH$", # FIXME: this is just hard-coded for now as we do not test # any other applications, but we should really use a sub to # derive this 'intelligently' @@ -505,37 +505,37 @@ TESTCASES = { "QA:Testcase_desktop_browser": { "env": "$SUBVARIANT$", "type": "Desktop", - "section": "Release-blocking desktops: x86 / x86_64", + "section": "$RUNARCH$", }, "QA:Testcase_desktop_login": { "env": "$SUBVARIANT$", "type": "Desktop", - "section": "Release-blocking desktops: x86 / x86_64", + "section": "$RUNARCH$", }, "QA:Testcase_desktop_update_graphical": { "env": "$SUBVARIANT$", "type": "Desktop", - "section": "Release-blocking desktops: x86 / x86_64", + "section": "$RUNARCH$", }, "QA:Testcase_desktop_update_notification": { "env": "$SUBVARIANT$", "type": "Desktop", - "section": "Release-blocking desktops: x86 / x86_64", + "section": "$RUNARCH$", }, "QA:Testcase_desktop_error_checks": { "env": "$SUBVARIANT$", "type": "Desktop", - "section": "Release-blocking desktops: x86 / x86_64", + "section": "$RUNARCH$", }, "QA:Testcase_workstation_core_applications": { "env": "$SUBVARIANT$", "type": "Desktop", - "section": "Release-blocking desktops: x86 / x86_64", + "section": "$RUNARCH$", }, "QA:Testcase_Printing_New_Printer": { "env": "$SUBVARIANT$", "type": "Desktop", - "section": "Release-blocking desktops: x86 / x86_64", + "section": "$RUNARCH$", "name": "virtual printer", }, "QA:Testcase_Server_firewall_default": {