From 3016526d4f411dd12d8ff73b5619bd01a6bef8eb Mon Sep 17 00:00:00 2001 From: Nicolas Hug Date: Tue, 8 Apr 2025 13:31:30 +0100 Subject: [PATCH] Skip ffmpeg CLI test internally --- test/test_ops.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_ops.py b/test/test_ops.py index d78752da8..fce7a3d80 100644 --- a/test/test_ops.py +++ b/test/test_ops.py @@ -44,6 +44,7 @@ from .utils import ( assert_frames_equal, cpu_and_cuda, + in_fbcode, NASA_AUDIO, NASA_AUDIO_MP3, NASA_VIDEO, @@ -1139,6 +1140,7 @@ def test_round_trip(self, tmp_path): ) # TODO-ENCODING: test more encoding formats + @pytest.mark.skipif(in_fbcode(), reason="TODO: enable ffmpeg CLI") @pytest.mark.parametrize("asset", (NASA_AUDIO_MP3, SINE_MONO_S32)) @pytest.mark.parametrize("bit_rate", (None, 0, 44_100, 999_999_999)) def test_against_cli(self, asset, bit_rate, tmp_path):