diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-24 17:20:30 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-24 17:20:30 -0500 |
commit | 450b191950fba173de99ad46b4f34e39576c4f65 (patch) | |
tree | 73c47ae0751327c2f58aa97bf8f9158064cab522 /coverage/control.py | |
parent | aa49bd6b32a29c78a41f8ddcfae6bfb376e8baa0 (diff) | |
download | python-coveragepy-450b191950fba173de99ad46b4f34e39576c4f65.tar.gz |
'coverage debug sys' shows the python executable, and there's a test that our subprocesses use the same one we do.
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/coverage/control.py b/coverage/control.py index 28d084b..81017b9 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -650,6 +650,7 @@ class coverage(object): ('python', sys.version.replace('\n', '')), ('platform', platform.platform()), ('implementation', implementation), + ('executable', sys.executable), ('cwd', os.getcwd()), ('path', sys.path), ('environment', [ |