You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to be able to use this runner and ignore tests of specific JUnit categories. I.e. it'd be nice to have support for the @IncludeCategory/@ExcludeCategory annotations (or a cpsuite-specific counterpart).
The text was updated successfully, but these errors were encountered:
It seems likely this isn't going to happen unless someone forks the project.
I was able to get categories working with this workaround:
@RunWith(Categories.class)
@ExcludeCategory({QuarantinedTests.class})
@SuiteClasses({MySuite.class})
public class WrapperSuite { }
@RunWith(ClasspathSuite.class)
@ClassnameFilters({"mytests.*"})
public class MySuite { }
I'd like to be able to use this runner and ignore tests of specific JUnit categories. I.e. it'd be nice to have support for the
@IncludeCategory
/@ExcludeCategory
annotations (or a cpsuite-specific counterpart).The text was updated successfully, but these errors were encountered: