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.
This commit is contained in:
Alex Pyrgiotis 2024-06-27 21:47:48 +03:00
parent 58bc9950c5
commit f476102ee9
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -892,7 +892,7 @@ class QALinux(QABase):
self.run_tests() self.run_tests()
self.build_package() self.build_package()
self.build_qa_image() self.build_qa_image()
self.qa_scenarios(skip=[1, 2, 8, 9]) self.qa_scenarios(skip=[1, 2, 3, 10, 11])
class QADebianBased(QALinux): class QADebianBased(QALinux):