File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -263,7 +263,10 @@ def extension_list(self) -> list[str]:
263
263
return self .extractor .file_extractors [self .extractor .extract_file_deb ]
264
264
265
265
@pytest .mark .asyncio
266
- @pytest .mark .skipif (sys .version_info < (3 , 8 ), reason = "py3.7 fails sometimes" )
266
+ @pytest .mark .skipif (
267
+ sys .version_info .major == 3 and (sys .version_info .minor in (7 , 11 )),
268
+ reason = "py3.7 and py3.11 fail sometimes" ,
269
+ )
267
270
async def test_extract_file_deb (self , extension_list : list [str ]):
268
271
"""Test the deb file extraction"""
269
272
async for extracted_path in self .extract_files (
@@ -310,7 +313,10 @@ def extension_list(self) -> list[str]:
310
313
return self .extractor .file_extractors [self .extractor .extract_file_deb ]
311
314
312
315
@pytest .mark .asyncio
313
- @pytest .mark .skipif (sys .version_info < (3 , 8 ), reason = "py3.7 fails sometimes" )
316
+ @pytest .mark .skipif (
317
+ sys .version_info .major == 3 and (sys .version_info .minor in (7 , 11 )),
318
+ reason = "py3.7 and py3.11 fail sometimes" ,
319
+ )
314
320
async def test_extract_file_ipk (self , extension_list : list [str ]):
315
321
"""Test the ipk file extraction"""
316
322
async for extracted_path in self .extract_files (
You can’t perform that action at this time.
0 commit comments