代码之家  ›  专栏  ›  技术社区  ›  palotasb

如何运行测试用例`@单元测试.跳过`在Python中?

  •  0
  • palotasb  · 技术社区  · 5 年前

    假设以下测试套件:

    # test_module.py
    import unittest
    
    class Tests(unittest.TestCase):
    
      @unittest.skip
      def test_1(self):
        print("This should run only if explicitly asked to but not by default")
    
      # assume many other test cases and methods with or without the skip marker
    

    python -m unittest 是否有任何参数我可以传递给它实际运行而不是跳过 Tests.test_1 不修改测试代码和运行任何其他跳过的测试?

    python -m unittest test_module.Tests.test_1

    @unittest.skip 运行一个特定的测试用例?

    不管怎样,我还是想 python -m unittest discover

    0 回复  |  直到 5 年前
        1
  •  1
  •   palotasb    5 年前

    如果你想跳过一些昂贵的测试,你可以使用 conditional skip environment variable :

    @skipIf(int(os.getenv('TEST_LEVEL', 0)) < 1)
    def expensive_test(self):
        ...
    

    然后可以通过指定相应的环境变量来包含此测试:

    TEST_LEVEL=1 python -m unittest discover
    TEST_LEVEL=1 python -m unittest test_module.Tests.test_1
    

    如果您希望跳过一个测试,因为您希望它失败,您可以使用专用的 expectedFailure

    顺便说一句, pytest 有专门的装饰师 marking slow tests