mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
validate: add sync-version
Be able by the command line to change the sync version which is usually the GST_VALIDATE_TESTSUITE_VERSION from the test suite Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-devtools/-/merge_requests/227>
This commit is contained in:
parent
f5c3a0c9a0
commit
88b320cc2b
1 changed files with 3 additions and 0 deletions
|
@ -229,6 +229,7 @@ class LauncherConfig(Loggable):
|
|||
self.sync = False
|
||||
self.force_sync = False
|
||||
self.sync_all = False
|
||||
self.sync_version = None
|
||||
self.check_bugs_status = False
|
||||
self.retry_on_failures = False
|
||||
self.html = False
|
||||
|
@ -584,6 +585,8 @@ class LauncherConfig(Loggable):
|
|||
assets_group.add_argument("--sync-all", dest="sync_all", action="store_true",
|
||||
help="Synchronize asset repository,"
|
||||
" including big media files")
|
||||
assets_group.add_argument("--sync-version", dest="sync_version",
|
||||
help="Version of the asset repository, default is GST_VALIDATE_TESTSUITE_VERSION")
|
||||
assets_group.add_argument("--usage", action=PrintUsage,
|
||||
help="Print usage documentation")
|
||||
return parser
|
||||
|
|
Loading…
Reference in a new issue