I think `check` might also run different stuff (li...
# squarelibraries
j
I think
check
might also run different stuff (like linting), correct? I think I've tried
verifyPaparazziDebug
but it did nothing, since I didn't change anything in the source code 🙄 So I guess it was just cached.
j
Yes, it will run all check tasks, you can check them by running:
Copy code
./gradlew check --dry-run
That command will not execute any task, it will list all tasks and the order of them that would be executed
j
Totally forgot about that!
Then I would've seen that
verifyPaparazziDebug
did what I've been looking for 🙈
I think
check
cannot be easily restricted to debug tasks. I think chaining
verifyPaparazziDebug
and
testDebug
is sufficient for me now 🙂
j
Exactly, it is not trivial to exclude non debug tasks (you need to disable them programmatically or with -x)