flank
                                
                                 flank copied to clipboard
                                
                                    flank copied to clipboard
                            
                            
                            
                        Test classes with `@Ignore` are still run.
Let's say you have this test class:
@Ignore
class TestClass {
    @Test
    fun aTestMethod() { .. }
}
I would expect that aTestMethod() is not executed in flank runs, yet I see it being executed. It seems that the test methods, and not the class, need to be annotated.
Expected behavior
An @Ignore annotation on the test method or class should result in the methods not being ran. If at the class level, then no test in that class should execute.
@inktomi I'd love to accept a pull request for this feature! Currently we @Ignore at the method level. I agree @Ignore at the class level would make sense as well.