mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-16 13:26:36 +00:00
validate:launcher: Don't about unexisting tests when filtering tests
It was wrong
This commit is contained in:
parent
b971a7cd23
commit
ec9464dd90
1 changed files with 1 additions and 1 deletions
|
@ -814,7 +814,7 @@ not been tested and explicitely activated if you set use --wanted-tests ALL""")
|
|||
for test in generator.generate_tests(uris, scenarios):
|
||||
self.add_test(test)
|
||||
|
||||
if not self.tests and not uris:
|
||||
if not self.tests and not uris and not self.options.wanted_tests:
|
||||
printc(
|
||||
"No valid uris present in the path. Check if media files and info files exist", Colors.FAIL)
|
||||
|
||||
|
|
Loading…
Reference in a new issue