diff --git a/tests/test_modules.py b/tests/test_modules.py index 84f11ab58..c6ec1e021 100644 --- a/tests/test_modules.py +++ b/tests/test_modules.py @@ -7,8 +7,6 @@ import responses import dosagelib.cmd import httpmocks -from dosagelib.plugins.s import SoloLeveling -from dosagelib.scraper import GeoblockedException def cmd(*options): @@ -43,7 +41,11 @@ class TestModules(object): cmd('--basepath', str(tmpdir), 'CalvinAndHobbesEnEspanol:2012/07/22') @responses.activate + @pytest.mark.skip(reason="SoloeLeveling was removed, so we have no way to test this...") def test_sololeveling_geoblock(self, tmpdir): + from dosagelib.plugins.s import SoloLeveling + from dosagelib.scraper import GeoblockedException + responses.add(responses.GET, 'https://w3.sololeveling.net/', '1020', status=403)