mirror of
https://github.com/etesync/android
synced 2024-11-14 11:49:06 +00:00
19 lines
425 B
Bash
Executable File
19 lines
425 B
Bash
Executable File
#!/bin/sh
|
|
|
|
./gradlew -i --continue check mergeAndroidReports
|
|
|
|
echo
|
|
echo View lint report:
|
|
echo -n file://
|
|
realpath app/build/outputs/lint-results-gplayDebug.html
|
|
|
|
echo
|
|
echo View local unit test reports:
|
|
echo -n file://
|
|
realpath app/build/reports/tests/testStandardReleaseUnitTest/standardRelease/index.html
|
|
|
|
echo
|
|
echo "View merged Android test reports (debug):"
|
|
echo -n file://
|
|
realpath build/reports/androidTests/index.html
|