Only run test_love on a single Python version to avoid collisions
This commit is contained in:
parent
d4fe9e5b36
commit
4eec2e763d
3 changed files with 9 additions and 7 deletions
|
@ -6,10 +6,11 @@ import unittest
|
|||
|
||||
import pylast
|
||||
|
||||
from .test_pylast import TestPyLastWithLastFm
|
||||
from .test_pylast import PY37, TestPyLastWithLastFm
|
||||
|
||||
|
||||
class TestPyLastTrack(TestPyLastWithLastFm):
|
||||
@unittest.skipUnless(PY37, "Only run on Python 3.7 to avoid collisions")
|
||||
def test_love(self):
|
||||
# Arrange
|
||||
artist = "Test Artist"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue