mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-29 20:35:40 +00:00
validate: launcher: Make the gstvalidate application a python module
This commit is contained in:
parent
ce02887627
commit
5bfd579bf4
3 changed files with 4 additions and 4 deletions
0
validate/launcher/apps/__init__.py
Normal file
0
validate/launcher/apps/__init__.py
Normal file
|
@ -22,14 +22,14 @@ import time
|
|||
import urlparse
|
||||
import subprocess
|
||||
import ConfigParser
|
||||
from loggable import Loggable
|
||||
from launcher.loggable import Loggable
|
||||
|
||||
from baseclasses import GstValidateTest, Test, \
|
||||
from launcher.baseclasses import GstValidateTest, Test, \
|
||||
ScenarioManager, NamedDic, GstValidateTestsGenerator, \
|
||||
GstValidateMediaDescriptor, GstValidateEncodingTestInterface, \
|
||||
GstValidateBaseTestManager
|
||||
|
||||
from utils import path2url, DEFAULT_TIMEOUT, which, \
|
||||
from launcher.utils import path2url, DEFAULT_TIMEOUT, which, \
|
||||
GST_SECOND, Result, Protocols, mkdir, printc, Colors
|
||||
|
||||
#
|
||||
|
|
|
@ -131,7 +131,7 @@ http://wiki.pitivi.org/wiki/Bug_reporting#Debug_logs).
|
|||
|
||||
QA_ASSETS = "gst-integration-testsuites"
|
||||
MEDIAS_FOLDER = "medias"
|
||||
DEFAULT_GST_QA_ASSETS_REPO = "git@gitlab.com:thiblahute/gst-integration-testsuites.git"
|
||||
DEFAULT_GST_QA_ASSETS_REPO = "https://gitlab.com/thiblahute/gst-integration-testsuites.git"
|
||||
DEFAULT_SYNC_ASSET_COMMAND = "git fetch origin && git checkout origin/master && git annex get medias/defaults/"
|
||||
DEFAULT_SYNC_ALL_ASSET_COMMAND = "git fetch origin && git checkout origin/master && git annex get ."
|
||||
DEFAULT_TESTSUITES_DIR = os.path.join(DEFAULT_MAIN_DIR, QA_ASSETS, "testsuites")
|
||||
|
|
Loading…
Reference in a new issue