I have a scenario where I want the pytest not to test the function and resume the test excution.
def test(self):
    self.test1()
    self.test2()
    self.test3()
Here I want to ignore/skip self.test2() method to be executed. How can I proceed by simply ignoring self.test2()?
 
    