2019-07-12 Python 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# Python docs: Skipping a Unittest