Skip to content

Commit a0db11b

Browse files
authored
bpo-46421: Fix unittest filename evaluation when called as a module (GH-30654)
1 parent ac8308d commit a0db11b

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

Lib/test/test_cmd_line.py

+11
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,17 @@ def test_run_module_bug1764407(self):
166166
self.assertTrue(data.find(b'1 loop') != -1)
167167
self.assertTrue(data.find(b'__main__.Timer') != -1)
168168

169+
def test_relativedir_bug46421(self):
170+
# Test `python -m unittest` with a relative directory beginning with ./
171+
# Note: We have to switch to the project's top module's directory, as per
172+
# the python unittest wiki. We will switch back when we are done.
173+
defaultwd = os.getcwd()
174+
projectlibpath = os.path.dirname(__file__).removesuffix("test")
175+
with os_helper.change_cwd(projectlibpath):
176+
# Testing with and without ./
177+
assert_python_ok('-m', 'unittest', "test/test_longexp.py")
178+
assert_python_ok('-m', 'unittest', "./test/test_longexp.py")
179+
169180
def test_run_code(self):
170181
# Test expected operation of the '-c' switch
171182
# Switch needs an argument

Lib/unittest/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def _convert_name(name):
4040
name = rel_path
4141
# on Windows both '\' and '/' are used as path
4242
# separators. Better to replace both than rely on os.path.sep
43-
return name[:-3].replace('\\', '.').replace('/', '.')
43+
return os.path.normpath(name)[:-3].replace('\\', '.').replace('/', '.')
4444
return name
4545

4646
def _convert_names(names):

Misc/ACKS

+1
Original file line numberDiff line numberDiff line change
@@ -1994,6 +1994,7 @@ Masazumi Yoshikawa
19941994
Arnaud Ysmal
19951995
Bernard Yue
19961996
Moshe Zadka
1997+
Bader Zaidan
19971998
Elias Zamaria
19981999
Milan Zamazal
19992000
Artur Zaprzala
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Fix a unittest issue where if the command was invoked as ``python -m
2+
unittest`` and the filename(s) began with a dot (.), a ``ValueError`` is
3+
returned.

0 commit comments

Comments
 (0)