diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-07-29 09:37:26 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-07-29 09:37:26 -0400 |
commit | 397bc15fb7aed9e4747d758d43a41b9379add5ef (patch) | |
tree | 56051b45a00aa1d7355cd4800a53e8dc64e205a8 /tests/modules/process_test/try_execfile.py | |
parent | c93f23b9a58df31baf72465a5d992b1fd6694d2b (diff) | |
download | python-coveragepy-397bc15fb7aed9e4747d758d43a41b9379add5ef.tar.gz |
Setuptools fixed their egg-ordering problem, no need for this test workaround any more.
Diffstat (limited to 'tests/modules/process_test/try_execfile.py')
-rw-r--r-- | tests/modules/process_test/try_execfile.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/modules/process_test/try_execfile.py b/tests/modules/process_test/try_execfile.py index bc412fc..7090507 100644 --- a/tests/modules/process_test/try_execfile.py +++ b/tests/modules/process_test/try_execfile.py @@ -52,11 +52,6 @@ def without_same_files(filenames): cleaned_sys_path = [os.path.normcase(p) for p in without_same_files(sys.path)] -# Eggs seems to go in different places for some reason. I'm going to assume -# it's an OK difference. Sort eggs to the end of the list to canonicalize -# them. -cleaned_sys_path = sorted(cleaned_sys_path, key=lambda p: p.endswith(".egg")) - DATA = "xyzzy" import __main__ |