Skip to content

How To Skip A Unit Test

How to skip a unit test#

from unittest import skip, TestCase

class MyTestCase(TestCase):
    @skip("skipping this")
    def test_vpls_short_conversion(self):
        ...

Source#