summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/loader.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-10-23 17:11:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-10-23 17:11:29 (GMT)
commitd5d0bc35adc6c043d5985152451505e70d869341 (patch)
tree3057814c4d701ba5f0b8e7aa0fd8443ffdb1dd5f /Lib/unittest/loader.py
parentdde25c485158b652ed34581cb977eb5bd439ade0 (diff)
downloadcpython-d5d0bc35adc6c043d5985152451505e70d869341.zip
cpython-d5d0bc35adc6c043d5985152451505e70d869341.tar.gz
cpython-d5d0bc35adc6c043d5985152451505e70d869341.tar.bz2
Issue #19352: Fix unittest discovery when a module can be reached through several paths (e.g. under Debian/Ubuntu with virtualenv).
Diffstat (limited to 'Lib/unittest/loader.py')
-rw-r--r--Lib/unittest/loader.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/unittest/loader.py b/Lib/unittest/loader.py
index 2b92525..9ab26c1 100644
--- a/Lib/unittest/loader.py
+++ b/Lib/unittest/loader.py
@@ -263,8 +263,8 @@ class TestLoader(object):
yield _make_failed_import_test(name, self.suiteClass)
else:
mod_file = os.path.abspath(getattr(module, '__file__', full_path))
- realpath = _jython_aware_splitext(mod_file)
- fullpath_noext = _jython_aware_splitext(full_path)
+ realpath = _jython_aware_splitext(os.path.realpath(mod_file))
+ fullpath_noext = _jython_aware_splitext(os.path.realpath(full_path))
if realpath.lower() != fullpath_noext.lower():
module_dir = os.path.dirname(realpath)
mod_name = _jython_aware_splitext(os.path.basename(full_path))