What would be a good approach to run/verify papara...
# squarelibraries
j
What would be a good approach to run/verify paparazzi tests on my CI System? I always have normal non-paparazzi unit tests and paparazzi screenshot tests within the same module. Let's assume I have a gradle module,
sample
: •
./gradlew sample:verifyPaparazziDebug
would invoke the paparazzi tests as well as the other JUnit Tests. But I'd have to list all my modules in the project individually. •
./gradlew sample:testDebug
(or something like
./gradlew testDebugUnitTest
for the whole project) would run all the paparazzi tests as well as the other JUnit Tests, but it would not check if anything has changed (hence not fail). Is there any way to separate those two test groups? Does this even make sense? Or can I run everything (including the verification) in an easy way?
117 Views