summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2016-03-23 16:44:27 +0100
committerThibault Saunier <tsaunier@gnome.org>2016-03-23 16:44:27 +0100
commit11e09a7a1fa1fd9792b69c6513c4e8f5b1e605e4 (patch)
treec2e9a0e4cdf23fa284f530cf4e8dd058a7ad9847
parentd54b0dbc3cfa521783e7987f675fa35a0e33438e (diff)
ges: Pass the proper path to GES projects
-rw-r--r--testsuites/ges.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuites/ges.py b/testsuites/ges.py
index de5e679..dfd25bd 100644
--- a/testsuites/ges.py
+++ b/testsuites/ges.py
@@ -29,5 +29,7 @@ def setup_tests(test_manager, options):
print("Setting up GES default tests")
options.add_paths(os.path.abspath(os.path.join(os.path.dirname(__file__),
"..", "medias")))
- test_manager.register_defaults()
+ projects_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "ges",
+ "ges-projects"))
+ test_manager.register_defaults(projects_path)
return True