2ddae84 rewrite a misprocessed teardown_method method as a custom decorator

2 files Authored by Oleg Fayans 8 years ago, Committed by mbasti 8 years ago,
    rewrite a misprocessed teardown_method method as a custom decorator
    
    teardown_method is a standard pytest method used to put any code to be executed
    after each test method is executed. While treated correctly by our integration
    tests, this method is misinterpreted by in-tree tests in the following way:
    in-tree tests try to execute it even if all the test methods are skipped due to
    test resources being not configured. This causes the tests, that otherwise would
    have been skipped, to fail
    
    https://fedorahosted.org/freeipa/ticket/5723
    
    Reviewed-By: Martin Basti <mbasti@redhat.com>