mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-04 13:32:29 +00:00
baseclasses: Add method to set a specific list of scenarios
https://bugzilla.gnome.org/show_bug.cgi?id=781314
This commit is contained in:
parent
9d33d0ec9c
commit
325c1b37dd
1 changed files with 7 additions and 0 deletions
|
@ -1819,6 +1819,13 @@ class GstValidateBaseTestManager(TestsManager):
|
|||
|
||||
self._scenarios = list(set(self._scenarios))
|
||||
|
||||
def set_scenarios(self, scenarios):
|
||||
"""
|
||||
Override the scenarios
|
||||
"""
|
||||
self._scenarios = []
|
||||
self.add_scenarios(scenarios)
|
||||
|
||||
def get_scenarios(self):
|
||||
return self._scenarios
|
||||
|
||||
|
|
Loading…
Reference in a new issue