[New-bugs-announce] [issue19114] duplicate test names in Lib/distutils/tests/test_cmd.py

Xavier de Gaye report at bugs.python.org
Sat Sep 28 18:37:12 CEST 2013


New submission from Xavier de Gaye:

$ ./python -m unittest -v Lib/distutils/tests/test_cmd.py 2>&1 | grep test_ensure_string_list
test_ensure_string_list (Lib.distutils.tests.test_cmd.CommandTestCase) ... ok
$

And after renaming the first test_ensure_string_list to
test_ensure_string_list_1 and the second one to
test_ensure_string_list_2:

$ ./python -m unittest -v Lib/distutils/tests/test_cmd.py 2>&1 | grep test_ensure_string_list
test_ensure_string_list_1 (Lib.distutils.tests.test_cmd.CommandTestCase) ... ok
test_ensure_string_list_2 (Lib.distutils.tests.test_cmd.CommandTestCase) ... ok
$

----------
components: Library (Lib)
messages: 198530
nosy: eric.araujo, tarek, xdegaye
priority: normal
severity: normal
status: open
title: duplicate test names in Lib/distutils/tests/test_cmd.py
type: behavior
versions: Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue19114>
_______________________________________


More information about the New-bugs-announce mailing list