Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion qt/tests/test_sound.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import aqt
from anki.sound import SoundOrVideoTag
from anki.utils import is_mac, is_win
from anki.utils import is_lin, is_mac, is_win
from aqt.sound import MpvManager, _packagedCmd, is_audio_file


Expand Down Expand Up @@ -109,6 +109,7 @@ def test_mpv_can_play_generated_wav(generated_wav: Path):
assert result.returncode == 0, result.stderr.decode()


@pytest.mark.skipif(is_lin, reason="mpv is not bundled for Linux")
def test_mpvmanager_can_play_generated_wav(
monkeypatch, tmp_path: Path, generated_wav: Path
):
Expand Down
Loading