Skip to content

Commit 949b3e4

Browse files
committed
what if we don't remove process_start
1 parent 35f89e4 commit 949b3e4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/helpers.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ def run_command(cmd: str) -> tuple[int, str]:
5252
sub_env = dict(os.environ)
5353
sub_env['PYTHONIOENCODING'] = encoding
5454

55-
# We might have COVERAGE_PROCESS_START set for metacov, but don't want that
56-
# affecting commands we run in tests.
57-
proc_start = sub_env.get("COVERAGE_PROCESS_START")
58-
if proc_start and "metacov.ini" in proc_start:
59-
del sub_env["COVERAGE_PROCESS_START"]
55+
# # We might have COVERAGE_PROCESS_START set for metacov, but don't want that
56+
# # affecting commands we run in tests.
57+
# proc_start = sub_env.get("COVERAGE_PROCESS_START")
58+
# if proc_start and "metacov.ini" in proc_start:
59+
# del sub_env["COVERAGE_PROCESS_START"]
6060

6161
proc = subprocess.Popen(
6262
cmd,

0 commit comments

Comments
 (0)