gstreamer/subprojects/gst-integration-testsuites/testsuites/ges_known_issues.py
2021-09-24 16:29:33 -03:00

37 lines
1.2 KiB
Python

KNOWN_ISSUES = {
'https://gitlab.freedesktop.org/gstreamer/gst-editing-services/issues/27': {
'tests': [
'ges.playback.scrub_forward_seeking.test_mixing.*mp3.*',
'ges.scenario.add_effect_and_split',
],
'issues': [
{
'summary': 'position after a seek is wrong',
'sometimes': True,
},
{
"summary": "The execution of an action did not properly happen",
"issue-id": "scenario::execution-error",
},
]
},
"https://gitlab.freedesktop.org/gstreamer/gst-editing-services/issues/65": {
"tests": [
"ges.playback.scrub_backward_seeking.test_transition.*"
],
"issues": [
{
"issue-id": "event::segment-has-wrong-start",
"summary": "A segment doesn't have the proper time value after an ACCURATE seek",
"level": "critical",
"can-happen-several-times": True,
},
],
},
"General flakiness": {
"tests": [
r"^ges\.((?!render).)*$",
],
"allow_flakiness": True,
},
}