Skip to content

Commit bef07f7

Browse files
authored
skip fifo test on windows (#1663)
1 parent d5be65a commit bef07f7

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

test/test_decoders.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
H265_VIDEO,
9494
HEAPBOF_PNG,
9595
in_fbcode,
96+
IS_WINDOWS,
9697
make_video_decoder,
9798
NASA_AUDIO,
9899
NASA_AUDIO_MP3,
@@ -4714,6 +4715,7 @@ def test_seek_past_end(self, seconds_past_end, device):
47144715
assert_frames_equal(got.data, expected.data)
47154716

47164717
@needs_ffmpeg_cli
4718+
@pytest.mark.skipif(IS_WINDOWS, reason="os.mkfifo isn't available on Windows")
47174719
def test_seek_on_non_seekable_source_raises(self, tmp_path):
47184720
# A named pipe fed by a live stream: there's nothing to seek in, and
47194721
# FFmpeg reports that as a bare EPERM, which we turn into something

0 commit comments

Comments
 (0)