Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
geigerzaehler committed Jan 10, 2025
1 parent d0d6b4d commit c088392
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
- run: poetry run ruff check
- run: poetry run pyright --warnings
- run: sudo apt-get install -y imagemagick
if: runner.os == 'Linux'
- run: poetry run pytest
- run: poetry run coverage xml
- uses: coverallsapp/github-action@v2
Expand Down
2 changes: 1 addition & 1 deletion test/cli_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def test_unkown_collection(self):
assert str(e.value) == "Alternative collection 'unkown' not found."

@pytest.mark.skipif(
sys.platform.startswith("win"), reason="Image conversion not available"
not sys.platform.startswith("linux"), 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 c088392

Please sign in to comment.