Remove deprecated license_file from setup.cfg (#303)
Remove deprecated license_file from setup.cfg
This commit is contained in:
commit
dedcbf00f5
|
@ -6,7 +6,7 @@ pyLast
|
||||||
[](https://travis-ci.org/pylast/pylast)
|
[](https://travis-ci.org/pylast/pylast)
|
||||||
[](https://codecov.io/gh/pylast/pylast)
|
[](https://codecov.io/gh/pylast/pylast)
|
||||||
[](https://coveralls.io/github/pylast/pylast?branch=master)
|
[](https://coveralls.io/github/pylast/pylast?branch=master)
|
||||||
[](https://github.com/black/black)
|
[](https://github.com/python/black)
|
||||||
|
|
||||||
A Python interface to [Last.fm](https://www.last.fm/) and other API-compatible websites such as [Libre.fm](https://libre.fm/).
|
A Python interface to [Last.fm](https://www.last.fm/) and other API-compatible websites such as [Libre.fm](https://libre.fm/).
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,5 @@ universal = 1
|
||||||
ignore = W503
|
ignore = W503
|
||||||
max_line_length = 88
|
max_line_length = 88
|
||||||
|
|
||||||
[metadata]
|
|
||||||
license_file = COPYING
|
|
||||||
|
|
||||||
[pycodestyle]
|
[pycodestyle]
|
||||||
max_line_length = 88
|
max_line_length = 88
|
||||||
|
|
|
@ -5,6 +5,8 @@ Integration (not unit) tests for pylast.py
|
||||||
import unittest
|
import unittest
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
import pylast
|
import pylast
|
||||||
|
|
||||||
from .test_pylast import TestPyLastWithLastFm
|
from .test_pylast import TestPyLastWithLastFm
|
||||||
|
@ -40,6 +42,7 @@ class TestPyLastAlbum(TestPyLastWithLastFm):
|
||||||
# Assert
|
# Assert
|
||||||
self.assertTrue(hasattr(track, "album"))
|
self.assertTrue(hasattr(track, "album"))
|
||||||
|
|
||||||
|
@pytest.mark.skip(reason="Last.fm is removing from API")
|
||||||
def test_album_in_artist_tracks(self):
|
def test_album_in_artist_tracks(self):
|
||||||
# Arrange
|
# Arrange
|
||||||
lastfm_user = self.network.get_user(self.username)
|
lastfm_user = self.network.get_user(self.username)
|
||||||
|
|
Loading…
Reference in a new issue