From 5bcf174fa500a3d7652dc5384807289ee1902cf3 Mon Sep 17 00:00:00 2001 From: Kaiyuan Li Date: Thu, 20 Nov 2014 18:16:35 -0800 Subject: [PATCH] Fix #647 Skip tests related to rmtp plugin for Windows Partly fix #647. The rmtp plugin is not included in GStreamer for Win32, so the test based on it can cause problems. This fix will skip these tests. --- src/freeseer/tests/framework/test_plugins.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/freeseer/tests/framework/test_plugins.py b/src/freeseer/tests/framework/test_plugins.py index 281090c6..599caaa8 100644 --- a/src/freeseer/tests/framework/test_plugins.py +++ b/src/freeseer/tests/framework/test_plugins.py @@ -79,6 +79,7 @@ def plugin_platform_category_cache(): return plugin_platform_category_count +@pytest.mark.skipif(sys.platform == 'win32', reason = 'Win32 GStreamer does not support rmtp plugin') @pytest.mark.parametrize('plugin_info, expected_instance', [ (('AudioInput', 'get_audioinput_bin'), gst.Bin), (('AudioMixer', 'get_audiomixer_bin'), gst.Bin),