diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-04-11 10:19:02 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-04-11 13:37:04 -0400 |
commit | 5c2f614e01d35271f7907d85050115071cf24e87 (patch) | |
tree | efab88c677cb4b220313927248c5ac696a471334 /tests/helpers.py | |
parent | c19658365310d76c1c64befea178d87637475811 (diff) | |
download | python-coveragepy-git-5c2f614e01d35271f7907d85050115071cf24e87.tar.gz |
fix: don't measure third-party scriptsnedbat/bin-exclude
This finishes the last bit of #905
Also includes tighter logging of the reason for not tracing modules.
Diffstat (limited to 'tests/helpers.py')
-rw-r--r-- | tests/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helpers.py b/tests/helpers.py index 262d9301..daed3d1a 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -240,7 +240,7 @@ def change_dir(new_dir): """ old_dir = os.getcwd() - os.chdir(new_dir) + os.chdir(str(new_dir)) try: yield finally: |