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 | f08cf696283f8c55451afa4046ca777bcfd90436 (patch) | |
tree | f180992fe71a6f5cad3bf0148273d9cb02460383 /coverage/control.py | |
parent | f8a4ce6be6629907dd88a8e34e29dea7f26dd806 (diff) | |
download | python-coveragepy-git-f08cf696283f8c55451afa4046ca777bcfd90436.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 28d084bf..81017b91 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', [ |