(context)
| 396 | # run_testbed will build the app automatically, but it's useful to have this as |
| 397 | # a separate command to allow running the app outside of this script. |
| 398 | def build_testbed(context): |
| 399 | setup_sdk() |
| 400 | setup_testbed() |
| 401 | run( |
| 402 | [gradlew, "--console", "plain", "packageDebug", "packageDebugAndroidTest"], |
| 403 | cwd=TESTBED_DIR, |
| 404 | ) |
| 405 | |
| 406 | |
| 407 | # Work around a bug involving sys.exit and TaskGroups |
nothing calls this directly
no test coverage detected
searching dependent graphs…