多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 问题 You want to skip or mark selected tests as an anticipated failure in your unit tests. ## 解决方案 The unittest module has decorators that can be applied to selected test methods tocontrol their handling. For example: import unittestimport osimport platform class Tests(unittest.TestCase):def test_0(self):self.assertTrue(True) @unittest.skip(‘skipped test')def test_1(self): > self.fail(‘should have failed!') @unittest.skipIf(os.name=='posix', ‘Not supported on Unix')def test_2(self): > import winreg @unittest.skipUnless(platform.system() == ‘Darwin', ‘Mac specific test')def test_3(self): > self.assertTrue(True) @unittest.expectedFailuredef test_4(self): > self.assertEqual(2+2, 5) if __name__ == ‘__main__':unittest.main() If you run this code on a Mac, you’ll get this output: > > bash % python3 testsample.py -vtest_0 (__main__.Tests) ... oktest_1 (__main__.Tests) ... skipped ‘skipped test'test_2 (__main__.Tests) ... skipped ‘Not supported on Unix'test_3 (__main__.Tests) ... oktest_4 (__main__.Tests) ... expected failure > Ran 5 tests in 0.002s > OK (skipped=2, expected failures=1) ## 讨论 The skip() decorator can be used to skip over a test that you don’t want to run at all.skipIf() and skipUnless() can be a useful way to write tests that only apply to certainplatforms or Python versions, or which have other dependencies. Use the @expectedFailure decorator to mark tests that are known failures, but for which you don’t wantthe test framework to report more information.The decorators for skipping methods can also be applied to entire testing classes. Forexample: @unittest.skipUnless(platform.system() == ‘Darwin', ‘Mac specific tests')class DarwinTests(unittest.TestCase): > ...