added tests skipping if there is no proper gstreamer
authorBoris Bobrov <breton@cynicmansion.ru>
Mon, 11 Aug 2014 17:09:22 +0000 (21:09 +0400)
committerBoris Bobrov <breton@cynicmansion.ru>
Mon, 16 Feb 2015 10:41:09 +0000 (13:41 +0300)
mediagoblin/tests/test_audio.py
mediagoblin/tests/test_video.py

index 740d9cdd0af0bc41c7a2b45d479700e5bef6b674..62d582ff343aff436b2b2c588c4c229e22898a2a 100644 (file)
@@ -24,7 +24,7 @@ import imghdr
 
 #os.environ['GST_DEBUG'] = '4,python:4'
 
-#TODO: this should be skipped if video plugin is not enabled
+pytest.importorskip("gi.repository.Gst")
 import gi
 gi.require_version('Gst', '1.0')
 from gi.repository import Gst
index 03298b67114f7bf4b31be1b0d3425387cfcb0791..79244515b84dca3316fe0c858aae490e779b6f5b 100644 (file)
@@ -20,8 +20,9 @@ from contextlib import contextmanager
 import imghdr
 
 #os.environ['GST_DEBUG'] = '4,python:4'
+import pytest
+pytest.importorskip("gi.repository.Gst")
 
-#TODO: this should be skipped if video plugin is not enabled
 import gi
 gi.require_version('Gst', '1.0')
 from gi.repository import Gst