I have an android project with unit and integration tests in the same folder. If I run ./gradlew test
all of them are run, but I just need to exclude the cucumber tests from running, at the moment I just need to actually exclude to run the class with the annotation @RunWith(Cucumber.class)
.
Any suggestions?