Skip to content

Commit f0eb6b4

Browse files
committed
Merge remote-tracking branch 'nedbat/nedbat/finish-1700' into suppress-path0
2 parents 1cdb88f + 66d3d34 commit f0eb6b4

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

CHANGES.rst

+5
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,17 @@ development at the same time, such as 4.5.x and 5.0.
2020
Unreleased
2121
----------
2222

23+
- Fix: the PYTHONSAFEPATH environment variable new in Python 3.11 is properly
24+
supported, closing `issue 1696`_. Thanks, `Philipp A. <pull 1700_>`_.
25+
2326
- Added new :ref:`debug options <cmd_run_debug>`:
2427

2528
- ``pytest`` writes the pytest test name into the debug output.
2629

2730
- ``dataop2`` writes the full data being added to CoverageData objects.
2831

32+
.. _issue 1696: https://github.com/nedbat/coveragepy/issues/1696
33+
.. _pull 1700: https://github.com/nedbat/coveragepy/pull/1700
2934

3035
.. scriv-start-here
3136

tests/test_process.py

+19
Original file line numberDiff line numberDiff line change
@@ -786,6 +786,25 @@ def test_coverage_zip_is_like_python(self) -> None:
786786
actual = self.run_command(f"python {cov_main} run run_me.py")
787787
self.assert_tryexecfile_output(expected, actual)
788788

789+
def test_pythonsafepath(self) -> None:
790+
with open(TRY_EXECFILE) as f:
791+
self.make_file("run_me.py", f.read())
792+
self.set_environ("PYTHONSAFEPATH", "1")
793+
expected = self.run_command("python run_me.py")
794+
actual = self.run_command("coverage run run_me.py")
795+
self.assert_tryexecfile_output(expected, actual)
796+
797+
@pytest.mark.skipif(env.PYVERSION < (3, 11), reason="PYTHONSAFEPATH is new in 3.11")
798+
def test_pythonsafepath_dashm(self) -> None:
799+
with open(TRY_EXECFILE) as f:
800+
self.make_file("with_main/__main__.py", f.read())
801+
802+
self.set_environ("PYTHONSAFEPATH", "1")
803+
expected = self.run_command("python -m with_main")
804+
actual = self.run_command("coverage run -m with_main")
805+
assert re.search(f"No module named '?with_main'?", actual)
806+
assert re.search(f"No module named '?with_main'?", expected)
807+
789808
def test_coverage_custom_script(self) -> None:
790809
# https://github.com/nedbat/coveragepy/issues/678
791810
# If sys.path[0] isn't the Python default, then coverage.py won't

0 commit comments

Comments
 (0)