Only run test_scrobble on a single Python version to avoid collisions

This commit is contained in:
Hugo 2019-02-02 14:15:31 +02:00
parent 850d746b60
commit cfb8134872

View file

@ -2,6 +2,7 @@
""" """
Integration (not unit) tests for pylast.py Integration (not unit) tests for pylast.py
""" """
import sys
import time import time
import unittest import unittest
@ -11,6 +12,9 @@ from .test_pylast import TestPyLastWithLastFm
class TestPyLastNetwork(TestPyLastWithLastFm): class TestPyLastNetwork(TestPyLastWithLastFm):
@unittest.skipUnless(
sys.version_info[:2] == (3, 7), "Only run on Python 3.7 to avoid collisions"
)
def test_scrobble(self): def test_scrobble(self):
# Arrange # Arrange
artist = "test artist" artist = "test artist"