File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 10
10
import logging
11
11
import os
12
12
import pathlib
13
- import platform
14
13
import shutil
15
14
import warnings
16
15
17
16
import attr
18
- import pytest
19
17
20
18
from commoncode import fileutils
21
19
from commoncode .system import on_linux
@@ -76,13 +74,6 @@ def get_command(env_var=EXTRACTCODE_GUESTFISH_PATH_ENVVAR, command='guestfish'):
76
74
return cmd_loc
77
75
78
76
79
- is_ubuntu_2204 = False
80
- if on_linux :
81
- freedesktop_os_release = platform .freedesktop_os_release ()
82
- is_ubuntu_2204 = freedesktop_os_release ['ID' ] == 'ubuntu' and freedesktop_os_release ['VERSION_ID' ] == '22.04'
83
-
84
-
85
- @pytest .mark .xfail (is_ubuntu_2204 , reason = 'Kernel is not readable on Ubuntu 22.04' )
86
77
def check_linux_kernel_is_readable ():
87
78
"""
88
79
Return True if the kernel executable file can be read. This is required by
You can’t perform that action at this time.
0 commit comments