Skip to content

Commit

Permalink
Skip tests failing on windows due to lacking environment
Browse files Browse the repository at this point in the history
  • Loading branch information
geigerzaehler committed Nov 16, 2024
1 parent 989aa45 commit ac88a20
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/cli_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import os.path
import platform
import shutil
import sys
from pathlib import Path
from time import sleep

Expand Down Expand Up @@ -340,6 +341,9 @@ def test_unkown_collection(self):
self.runcli("alt", "update", "unkown")
assert str(e.value) == "Alternative collection 'unkown' not found."

@pytest.mark.skipif(
sys.platform.startswith("win"), reason="Image conversion not available"
)
def test_embed_art(self, tmp_path: Path):
"""Test that artwork is embedded and updated to match the source file.
Expand Down

0 comments on commit ac88a20

Please sign in to comment.