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 1010import contextlib
1111import os
1212import pathlib
13+ import platform
1314import sys
1415from tempfile import TemporaryDirectory
1516
1819
1920# this package
2021from 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
2223
2324# TODO: delete, write, read and append might want deprecating in favour of pathlib
2425
@@ -306,6 +307,7 @@ def test_pathplus_write_clean():
306307"""
307308
308309
310+ @pytest .mark .xfail (reason = "Unsupported on PyPy3 <7.2" , condition = (platform .python_implementation == "PyPy" ))
309311def test_make_executable ():
310312 with TemporaryDirectory () as tmpdir :
311313 tempfile = pathlib .Path (tmpdir ) / "tmpfile.sh"
You can’t perform that action at this time.
0 commit comments