add regression testing tasks (#664)

This commit is contained in:
bmc-msft
2021-03-18 15:37:19 -04:00
committed by GitHub
parent 34b2a739cb
commit 6e60a8cf10
50 changed files with 2141 additions and 203 deletions

View File

@ -95,6 +95,8 @@ pub enum Event {
new_report,
new_unique_report,
new_unable_to_reproduce,
regression_report,
regression_unable_to_reproduce,
}
impl Event {
@ -109,6 +111,8 @@ impl Event {
Self::new_report => "new_report",
Self::new_unique_report => "new_unique_report",
Self::new_unable_to_reproduce => "new_unable_to_reproduce",
Self::regression_report => "regression_report",
Self::regression_unable_to_reproduce => "regression_unable_to_reproduce",
}
}
}