mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fixed PY-11911 Nosetests: test name gets trimmed if it starts with module name in which test is located.
This commit is contained in:
@@ -86,9 +86,6 @@ class TeamcityPlugin(ErrorClassPlugin, TextTestResult, TeamcityTestResult):
|
||||
ind_1 = test_name_full.rfind('(')
|
||||
if ind_1 != -1:
|
||||
return test_name_full[:ind_1]
|
||||
ind = test_name_full.rfind('.')
|
||||
if ind != -1:
|
||||
return test_name_full[test_name_full.rfind(".") + 1:]
|
||||
return test_name_full
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user