Skip to content

Commit ee03112

Browse files
authored
Skip mp3 encoding on windows (#1407)
1 parent 65241a9 commit ee03112

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

test/test_encoders.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3167,6 +3167,8 @@ def test_audio_bit_rate_positive_values(self, method, bit_rate, tmp_path):
31673167
@pytest.mark.parametrize("method", ("to_file", "to_file_like"))
31683168
@pytest.mark.parametrize("format", ["wav", "mp3", "flac"])
31693169
def test_multiple_audio_formats(self, method, format, tmp_path):
3170+
if IS_WINDOWS and format == "mp3":
3171+
pytest.skip("mp3 encoding not supported on Windows")
31703172
enc, encoder_output, open_kwargs = self._create_encoder(
31713173
method, tmp_path, format
31723174
)

0 commit comments

Comments
 (0)