From 5587bfac3147030a62549db0e20ab842b831562e Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Sun, 2 Oct 2022 21:13:26 -0700 Subject: [PATCH] Fix rar tests --- tests/comicarchive_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/comicarchive_test.py b/tests/comicarchive_test.py index 7d9499e..d1d08b9 100644 --- a/tests/comicarchive_test.py +++ b/tests/comicarchive_test.py @@ -56,6 +56,7 @@ def test_save_cbi(tmp_comic): md = tmp_comic.read_cbi() +@pytest.mark.xfail(not (comicapi.comicarchive.rar_support and shutil.which("rar"))) def test_save_cix_rar(tmp_path): cbr_path = datadir / "fake_cbr.cbr" shutil.copy(cbr_path, tmp_path) @@ -67,6 +68,7 @@ def test_save_cix_rar(tmp_path): assert md.replace(pages=[]) == comicapi.genericmetadata.md_test.replace(pages=[]) +@pytest.mark.xfail(not (comicapi.comicarchive.rar_support and shutil.which("rar"))) def test_save_cbi_rar(tmp_path): cbr_path = datadir / "fake_cbr.cbr" shutil.copy(cbr_path, tmp_path)