[issue37094] Provide an example for TestCase.skipTest in unittest doc

2019-05-31 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the patch! -- nosy: +zach.ware resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker ___

[issue37094] Provide an example for TestCase.skipTest in unittest doc

2019-05-31 Thread miss-islington
miss-islington added the comment: New changeset 8135455c840b9e169a6cd527cb1ee922cafb9109 by Miss Islington (bot) in branch '3.7': bpo-37094: Add example for TestCase.skipTest in unittest doc (GH-13645) https://github.com/python/cpython/commit/8135455c840b9e169a6cd527cb1ee922cafb9109 ---

[issue37094] Provide an example for TestCase.skipTest in unittest doc

2019-05-31 Thread miss-islington
Change by miss-islington : -- keywords: +patch pull_requests: +13587 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13701 ___ Python tracker ___ _

[issue37094] Provide an example for TestCase.skipTest in unittest doc

2019-05-31 Thread miss-islington
miss-islington added the comment: New changeset ffed76b6fc4d7dd0244b662d6e5738eb496d9def by Miss Islington (bot) (Makdon) in branch 'master': bpo-37094: Add example for TestCase.skipTest in unittest doc (GH-13645) https://github.com/python/cpython/commit/ffed76b6fc4d7dd0244b662d6e5738eb496d9d

[issue37094] Provide an example for TestCase.skipTest in unittest doc

2019-05-29 Thread 麦栋铖
New submission from 麦栋铖 : I found that there's an function TestCase.skipTest(reason)[0] supports skipping test in testing, but there's no example for this function in chapter Skipping tests[1] and expected failures I create PR[2] for updating the example for TestCase.skipTest in unittest doc.