[issue35767] unittest loader doesn't work with partial test functions

2020-09-22 Thread Jason Fried
Change by Jason Fried : -- resolution: -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue35767] unittest loader doesn't work with partial test functions

2020-09-22 Thread Jason Fried
Change by Jason Fried : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

[issue35767] unittest loader doesn't work with partial test functions

2020-09-21 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed now? -- components: +Tests nosy: +iritkatriel type: -> behavior ___ Python tracker ___

[issue35767] unittest loader doesn't work with partial test functions

2019-01-24 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 841387dd43e67b1800d10e4d7ce1f8cedc9f3706 by Łukasz Langa (Miss Islington (bot)) in branch '3.7': bpo-35767: Fix unittest.loader to allow partials as test_functions (GH-11600) (#11662) https://github.com/python/cpython/commit/841387dd43e67b1800d10e

[issue35767] unittest loader doesn't work with partial test functions

2019-01-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +11464, 11465, 11466 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue35767] unittest loader doesn't work with partial test functions

2019-01-23 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset fd628cf5adaeee73eab579393cdff71c8f70cdf2 by Łukasz Langa (Jason Fried) in branch 'master': bpo-35767: Fix unittest.loader to allow partials as test_functions (#11600) https://github.com/python/cpython/commit/fd628cf5adaeee73eab579393cdff71c8f70cdf2

[issue35767] unittest loader doesn't work with partial test functions

2019-01-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +11464 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35767] unittest loader doesn't work with partial test functions

2019-01-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +11464, 11465 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue35767] unittest loader doesn't work with partial test functions

2019-01-17 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Seems this was introduced with issue32071 -- nosy: +jonash, pitrou, xtreak ___ Python tracker ___ _

[issue35767] unittest loader doesn't work with partial test functions

2019-01-17 Thread Jason Fried
Change by Jason Fried : -- keywords: +patch, patch, patch pull_requests: +11316, 11317, 11318 stage: -> patch review ___ Python tracker ___ ___

[issue35767] unittest loader doesn't work with partial test functions

2019-01-17 Thread Jason Fried
Change by Jason Fried : -- keywords: +patch pull_requests: +11316 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue35767] unittest loader doesn't work with partial test functions

2019-01-17 Thread Jason Fried
Change by Jason Fried : -- keywords: +patch, patch pull_requests: +11316, 11317 stage: -> patch review ___ Python tracker ___ ___ P

[issue35767] unittest loader doesn't work with partial test functions

2019-01-17 Thread Jason Fried
Jason Fried added the comment: working on a pull request -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35767] unittest loader doesn't work with partial test functions

2019-01-17 Thread Jason Fried
Jason Fried added the comment: Oh this is broken in 3.7 trunk -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue35767] unittest loader doesn't work with partial test functions

2019-01-17 Thread Jason Fried
New submission from Jason Fried : https://github.com/python/cpython/blob/3.7/Lib/unittest/loader.py#L232 fullName = '%s.%s' % (testCaseClass.__module__, testFunc.__qualname__) Instead we should probably replace testFunc.__qualname__ with attrname I ran into this while running a test suite tha