Project

General

Profile

action #12448

Updated by okurz about 7 years ago

## User story 
 As a test module maintainer I want the overview page to show me only jobs where a module maintained by me fails so that I can find these easily 


 ## acceptance criteria 
 * **AC1:** a module name can be set on a query parameter on '/tests/overview' yielding only jobs where the module is mentioned as failed 
 * **AC2:** not specifying the query parameter still shows jobs depending on all other query parameters independant of single modules 
 * **AC3:** a job also shows up if the configured module is part of many failed and the failed might normally be hidden behind the "+X" 
 * **AC4:** the query parameter can be specified multiple times, OR-combined 
 * **AC5:** the query parameter can also be set in an UI way 

 ## further details 

 It would be cool, e.g. for bug references, to do something like 

 ``` 
 https://openqa.suse.de/tests/overview?distri=sle&version=12-SP2&build=1629&groupid=25&arch=aarch64&result=failed&failed_module=install_and_reboot 
 ``` 
 What is already working is specifying multiple query parameters as "and" combination, e.g. 

 ``` 
 arch=aarch64&arch=ppc64le 
 ``` 

 also, we can filter by test_suites using the query parameter `test`: 

 ``` 
 test=minimal_x 
 ``` 

 but not yet modules.

Back