如果测试通过,我如何包含其他测试?

时间:2013-07-23 14:15:44

标签: python unit-testing nose system-testing

我正在使用nose来运行一些系统测试,其中一个是测试(config)文件是否存在。如果这个文件存在,我想对它运行一些额外的测试。如果没有,我想跳过一堆测试。

如果主要测试通过,那么制作nose的最佳方法包括额外的测试?

1 个答案:

答案 0 :(得分:5)

您可以在特定的TestCase中使用setUp方法中的skipTest,例如:

import os
from unittest import TestCase

class MyTest(TestCase):
    def setUp(self):
        if not os.path.exists('configfile'):
            return self.skipTest('config file not found')

    def test01(self):
        # Do something with the file
        with open('configfile') as fd:
            self.assertEqual(fd.readlines().__len__(), 0)
如果配置文件不存在,

test test01将无法运行。