@@ -786,6 +786,25 @@ def test_coverage_zip_is_like_python(self) -> None:
786
786
actual = self .run_command (f"python { cov_main } run run_me.py" )
787
787
self .assert_tryexecfile_output (expected , actual )
788
788
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
+
789
808
def test_coverage_custom_script (self ) -> None :
790
809
# https://github.com/nedbat/coveragepy/issues/678
791
810
# If sys.path[0] isn't the Python default, then coverage.py won't
0 commit comments