Skip to content

Commit

Permalink
Disable AV1 test in fbcode (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
scotts authored Jan 22, 2025
1 parent 64d1b0d commit 547dd36
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/decoders/test_video_decoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,9 @@ def test_get_frames_at_fails(self, device):

@pytest.mark.parametrize("device", cpu_and_cuda())
def test_get_frame_at_av1(self, device):
if in_fbcode() and device == "cuda":
return

decoder = VideoDecoder(AV1_VIDEO.path, device=device)
ref_frame10 = AV1_VIDEO.get_frame_data_by_index(10)
ref_frame_info10 = AV1_VIDEO.get_frame_info(10)
Expand Down

0 comments on commit 547dd36

Please sign in to comment.