From 60410f3c761f829760036a5345bbf8bc9e44d100 Mon Sep 17 00:00:00 2001 From: Sam Gross Date: Thu, 20 Feb 2025 10:37:43 -0500 Subject: [PATCH] [3.12] gh-129269: Exclude everything in sys.path in `test_coverage_ignore` (gh-130133) (gh-130358) The `test_trace.test_coverage_ignore` test would fail if you had `setuptools` installed, such as in `~/.local/lib/python3.xxx/site-packages/`. Ignore everything in `sys.path` when running the test. (cherry picked from commit 35925e952911aba97bfdaee85b09d734ceac4fea) --- Lib/test/test_trace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py index 93966ee31d0a..2ef52123338a 100644 --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -390,7 +390,7 @@ class TestCoverage(unittest.TestCase): libpath = os.path.normpath(os.path.dirname(os.path.dirname(__file__))) # sys.prefix does not work when running from a checkout tracer = trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix, - libpath], trace=0, count=1) + libpath] + sys.path, trace=0, count=1) with captured_stdout() as stdout: self._coverage(tracer) if os.path.exists(TESTFN): -- 2.47.3