From f439f205dc4c407d010ceb953d9dd4683c41a51b Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 13 May 2019 11:08:18 +0300 Subject: [PATCH] Xfail user.getArtistTracks, looks like Last.fm are now removing it from the API --- tests/test_album.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_album.py b/tests/test_album.py index 2d47720..c1eb4a8 100755 --- a/tests/test_album.py +++ b/tests/test_album.py @@ -5,6 +5,8 @@ Integration (not unit) tests for pylast.py import unittest import warnings +import pytest + import pylast from .test_pylast import TestPyLastWithLastFm @@ -40,6 +42,7 @@ class TestPyLastAlbum(TestPyLastWithLastFm): # Assert self.assertTrue(hasattr(track, "album")) + @pytest.mark.skip(reason="Last.fm is removing from API") def test_album_in_artist_tracks(self): # Arrange lastfm_user = self.network.get_user(self.username)