File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 10
10
import contextlib
11
11
import os
12
12
import pathlib
13
+ import platform
13
14
import sys
14
15
from tempfile import TemporaryDirectory
15
16
18
19
19
20
# this package
20
21
from domdf_python_tools import paths
21
- from domdf_python_tools .paths import clean_writer , PathPlus
22
+ from domdf_python_tools .paths import PathPlus , clean_writer
22
23
23
24
# TODO: delete, write, read and append might want deprecating in favour of pathlib
24
25
@@ -306,6 +307,7 @@ def test_pathplus_write_clean():
306
307
"""
307
308
308
309
310
+ @pytest .mark .xfail (reason = "Unsupported on PyPy3 <7.2" , condition = (platform .python_implementation == "PyPy" ))
309
311
def test_make_executable ():
310
312
with TemporaryDirectory () as tmpdir :
311
313
tempfile = pathlib .Path (tmpdir ) / "tmpfile.sh"
You can’t perform that action at this time.
0 commit comments