From 0f7bce1bfe495b2165109fa8db04e04aa3546afb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0ar=C5=ABnas=20Nejus?= Date: Mon, 2 Mar 2026 07:46:50 +0000 Subject: [PATCH] Show that album genres are not applied to tracks --- test/test_autotag.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_autotag.py b/test/test_autotag.py index 8ae76fb68..47387f4fc 100644 --- a/test/test_autotag.py +++ b/test/test_autotag.py @@ -167,6 +167,7 @@ class ApplyTest(BeetsTestCase): year=2013, month=12, day=18, + genres=["Rock", "Pop"], ) common_expected = { @@ -193,6 +194,7 @@ class ApplyTest(BeetsTestCase): "year": 2013, "month": 12, "day": 18, + "genres": ["Rock", "Pop"], } self.expected_tracks = [ @@ -227,6 +229,7 @@ class ApplyTest(BeetsTestCase): }, ] + @pytest.mark.xfail(reason="Album genres are not applied to tracks") def test_autotag_items(self): self._apply()