We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b645698 commit 498ea7eCopy full SHA for 498ea7e
test/test_autotag.py
@@ -167,6 +167,7 @@ def setUp(self):
167
year=2013,
168
month=12,
169
day=18,
170
+ genres=["Rock", "Pop"],
171
)
172
173
common_expected = {
@@ -193,6 +194,7 @@ def setUp(self):
193
194
"year": 2013,
195
"month": 12,
196
"day": 18,
197
+ "genres": ["Rock", "Pop"],
198
}
199
200
self.expected_tracks = [
@@ -227,6 +229,7 @@ def setUp(self):
227
229
},
228
230
]
231
232
+ @pytest.mark.xfail(reason="Album genres are not applied to tracks")
233
def test_autotag_items(self):
234
self._apply()
235
0 commit comments