Skip to content

Commit

Permalink
disabled two AVIF tests with aom=3.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
  • Loading branch information
bigcat88 committed Oct 23, 2023
1 parent 0a8b48e commit 170e754
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/metadata_etc_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ def test_pillow_primary_image(save_format):

@pytest.mark.skipif(not aom(), reason="Requires AVIF support.")
@pytest.mark.skipif(not hevc_enc(), reason="Requires HEVC encoder.")
@pytest.mark.skipif(
pillow_heif.libheif_info().get("AVIF", "").find("v3.3.0") != -1,
reason="libheif 1.17.1 fails this test with this AOM version.",
)
@pytest.mark.parametrize("save_format", ("HEIF", "AVIF"))
def test_heif_info_changing(save_format):
xmp = b"LeagueOf"
Expand Down Expand Up @@ -111,6 +115,10 @@ def test_heif_info_changing(save_format):

@pytest.mark.skipif(not aom(), reason="Requires AVIF support.")
@pytest.mark.skipif(not hevc_enc(), reason="Requires HEVC encoder.")
@pytest.mark.skipif(
pillow_heif.libheif_info().get("AVIF", "").find("v3.3.0") != -1,
reason="libheif 1.17.1 fails this test with this AOM version.",
)
@pytest.mark.parametrize("save_format", ("HEIF", "AVIF"))
def test_pillow_info_changing(save_format):
xmp = b"LeagueOf"
Expand Down

0 comments on commit 170e754

Please sign in to comment.