I tried many combinations but couldn't make it shorter with the same behavior :( - ph --- Just a small hint about the concept of includes/excludes. A test is executed if and only if it matches any include (or all if there are no includes) AND doesn't match any exclude.
The problem I see is that by default you exclude every test (**/*). This implies that all includes are useless. By overriding the excludes per execution-block you kind of fixed that. Robert .