Trying to reorganize a very large library of tests by grouping them into different areas. What I've done so far is create a "api-crud" group within TestNG and setting the @Test parameters accordingly.
How can I, in gradle, run only these tests? When I try to do the following:
includeGroups 'api-crud'
gradle seems to run everything still.
I've seen some of the examples of setting excludeGroups, but that is currently unrealistic due to the size and scope of the project.