I read How do I skip a whole Python unittest module at run-time? and this doesn't seems like a very neat way
In Java all you have to say is @Ignore
on test class and the entire test class is ignored
Is there a better way to skip
the entire test module or shall i just do
class TestMe():
@unittest.skip
def test_a(self):
pass
@unittest.skip
def test_b(self):
pass
...
by adding @unittest.skip
on all the test on module