From f476102ee9d22c30ff125438b5b007e01ebf6ec9 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Thu, 27 Jun 2024 21:47:48 +0300 Subject: [PATCH] dev_scripts: Properly skip QA scenarios on Linux With the addition of the drag-and-drop QA scenario, the numbering of the QA steps has changed. Mirror this numbering change in the qa.py script as well, which tracks which QA scenarios do not apply to Linux platforms. --- dev_scripts/qa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_scripts/qa.py b/dev_scripts/qa.py index 8ab193f..318312d 100755 --- a/dev_scripts/qa.py +++ b/dev_scripts/qa.py @@ -892,7 +892,7 @@ class QALinux(QABase): self.run_tests() self.build_package() self.build_qa_image() - self.qa_scenarios(skip=[1, 2, 8, 9]) + self.qa_scenarios(skip=[1, 2, 3, 10, 11]) class QADebianBased(QALinux):