Closed juliocbcotta closed 6 years ago
Hi, is it possible to have gradle tasks for tests size? Like... with spoon we can spoonDebugAndroidTestSmall so it runs just the tests annotates with @SmallTest
spoonDebugAndroidTestSmall
@SmallTest
based on the android InstrumentationTestRunner docs it should be something like the following:
instrumentationArgument('size', 'small')
using that in the correct location should give you what you need.
Hi, is it possible to have gradle tasks for tests size? Like... with spoon we can
spoonDebugAndroidTestSmall
so it runs just the tests annotates with@SmallTest