Skip to content

Commit 32e8d79

Browse files
committed
fix: more details about PYTHONSAFEPATH. #1696
temp: fix lint errors from rebases docs: a note to ourselves about interpreting test failures test: one more safepath test fix: use sys.flags instead of reading the PYTHONSAFEPATH test: skip the test that show Windows gets PYTHONSAFEPATH wrong
1 parent 7c2844c commit 32e8d79

File tree

4 files changed

+25
-13
lines changed

4 files changed

+25
-13
lines changed

CHANGES.rst

+8-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,14 @@ upgrading your version of coverage.py.
2323
Unreleased
2424
----------
2525

26-
Nothing yet.
26+
- Fix: the PYTHONSAFEPATH environment variable new in Python 3.11 is properly
27+
supported, closing `issue 1696`_. Thanks, `Philipp A. <pull 1700_>`_. This
28+
works properly except for a detail when using the ``coverage`` command on
29+
Windows. There you can use ``python -m coverage`` instead if you need exact
30+
emulation.
31+
32+
.. _issue 1696: https://github.com/nedbat/coveragepy/issues/1696
33+
.. _pull 1700: https://github.com/nedbat/coveragepy/pull/1700
2734

2835

2936
.. start-releases

coverage/execfile.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
from types import CodeType, ModuleType
1818
from typing import Any
1919

20+
from coverage import env
2021
from coverage.exceptions import CoverageException, _ExceptionDuringRun, NoCode, NoSource
2122
from coverage.files import canonical_filename, python_reported_file
2223
from coverage.misc import isolate_module
@@ -89,7 +90,7 @@ def prepare(self) -> None:
8990
This needs to happen before any importing, and without importing anything.
9091
"""
9192
path0: str | None
92-
if env.PYVERSION >= (3, 11) and os.environ.get('PYTHONSAFEPATH', ''):
93+
if env.PYVERSION >= (3, 11) and getattr(sys.flags, "safe_path"):
9394
# See https://docs.python.org/3/using/cmdline.html#cmdoption-P
9495
path0 = None
9596
elif self.as_module:

tests/test_execfile.py

-11
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
import re
1515
import sys
1616

17-
from pathlib import Path
1817
from typing import Any
1918
from collections.abc import Iterator
2019

@@ -25,7 +24,6 @@
2524
from coverage.files import python_reported_file
2625

2726
from tests.coveragetest import CoverageTest, TESTS_DIR, UsingModulesMixin
28-
from tests.helpers import change_dir
2927

3028
TRY_EXECFILE = os.path.join(TESTS_DIR, "modules/process_test/try_execfile.py")
3129

@@ -309,15 +307,6 @@ def test_pkg1_init(self) -> None:
309307
assert out == "pkg1.__init__: pkg1\npkg1.__init__: __main__\n"
310308
assert err == ""
311309

312-
def test_pythonpath(self, tmp_path: Path) -> None:
313-
self.set_environ("PYTHONSAFEPATH", "1")
314-
with change_dir(tmp_path):
315-
run_python_module(["process_test.try_execfile"])
316-
out, err = self.stdouterr()
317-
mod_globs = json.loads(out)
318-
assert tmp_path not in mod_globs["path"]
319-
assert err == ""
320-
321310
def test_no_such_module(self) -> None:
322311
with pytest.raises(NoSource, match="No module named '?i_dont_exist'?"):
323312
run_python_module(["i_dont_exist"])

tests/test_process.py

+15
Original file line numberDiff line numberDiff line change
@@ -666,6 +666,7 @@ def assert_tryexecfile_output(self, expected: str, actual: str) -> None:
666666
"""
667667
# First, is this even credible try_execfile.py output?
668668
assert '"DATA": "xyzzy"' in actual
669+
# If this fails, "+" is actual, and "-" is expected
669670
assert actual == expected
670671

671672
def test_coverage_run_is_like_python(self) -> None:
@@ -807,6 +808,11 @@ def test_coverage_zip_is_like_python(self) -> None:
807808
actual = self.run_command(f"python {cov_main} run run_me.py")
808809
self.assert_tryexecfile_output(expected, actual)
809810

811+
@pytest.mark.skipif(env.PYVERSION < (3, 11), reason="PYTHONSAFEPATH is new in 3.11")
812+
@pytest.mark.skipif(
813+
env.WINDOWS,
814+
reason="Windows gets this wrong: https://github.com/python/cpython/issues/131484",
815+
)
810816
def test_pythonsafepath(self) -> None:
811817
with open(TRY_EXECFILE) as f:
812818
self.make_file("run_me.py", f.read())
@@ -815,6 +821,15 @@ def test_pythonsafepath(self) -> None:
815821
actual = self.run_command("coverage run run_me.py")
816822
self.assert_tryexecfile_output(expected, actual)
817823

824+
@pytest.mark.skipif(env.PYVERSION < (3, 11), reason="PYTHONSAFEPATH is new in 3.11")
825+
def test_pythonsafepath_dashm_runme(self) -> None:
826+
with open(TRY_EXECFILE) as f:
827+
self.make_file("run_me.py", f.read())
828+
self.set_environ("PYTHONSAFEPATH", "1")
829+
expected = self.run_command("python run_me.py")
830+
actual = self.run_command("python -m coverage run run_me.py")
831+
self.assert_tryexecfile_output(expected, actual)
832+
818833
@pytest.mark.skipif(env.PYVERSION < (3, 11), reason="PYTHONSAFEPATH is new in 3.11")
819834
def test_pythonsafepath_dashm(self) -> None:
820835
with open(TRY_EXECFILE) as f:

0 commit comments

Comments
 (0)