Disable geoblocking test

Since we removed the standalone SoloLeveling module, we have no
geoblocking comic modules at the moment, so there is no good way to test
geoblocking anymore...
This commit is contained in:
Tobias Gruetzmacher 2022-04-16 00:11:01 +02:00
parent 18b8a79ab7
commit a6d2e11503

View file

@ -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/',
'<span>1020</span>', status=403)