Faster Tests
Ran py.test from working directory. It's taking lot of time. Till the time let me work on other issue 'reduce the number of calls for init_test_app()'.
Went through different pytest hooks if anything can help.
The problem here is 'How do I keep the previous value of self.app'. If I have the previous value, I can use it for new test item too(with some conditions). But, with every new call MointestFunction and init_test_app() is called again. Need to find a solution for it or use some different approach to solve this.