[test_downloadermiddleware_httpcache] Fixing pytest skip behaviour

https://github.com/scrapy/scrapy/issues/4085
This commit is contained in:
Roy 2019-10-28 12:36:54 +00:00
parent 4432136fff
commit c51fb959e2
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import unittest
import email.utils
from contextlib import contextmanager
import pytest
import sys
from scrapy.http import Response, HtmlResponse, Request
from scrapy.spiders import Spider
@ -160,7 +161,7 @@ class LeveldbStorageTest(DefaultStorageTest):
pytest.importorskip('leveldb')
except SystemError:
# Happens in python 3.8
pytest.skip("'SystemError: bad call flags' occurs on Python 3.8")
pytestmark = pytest.skip("'SystemError: bad call flags' occurs on Python 3.8")
storage_class = 'scrapy.extensions.httpcache.LeveldbCacheStorage'