Update test_downloadermiddleware_httpcache.py

Adding xfail denoting that leveldb is not supported in 3.8
This commit is contained in:
Roy Healy 2019-10-27 17:02:17 +00:00 committed by GitHub
parent 179dc916ff
commit 4068797558
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -154,6 +154,7 @@ class FilesystemStorageGzipTest(FilesystemStorageTest):
new_settings.setdefault('HTTPCACHE_GZIP', True)
return super(FilesystemStorageTest, self)._get_settings(**new_settings)
@pytest.mark.xfail(reason='leveldb not supported in python 3.8')
class LeveldbStorageTest(DefaultStorageTest):
pytest.importorskip('leveldb')