From 02dae0e77e1d0fdbcc558390b6e8fa46f5dc599a Mon Sep 17 00:00:00 2001 From: Evgenii Kozlov Date: Thu, 26 May 2022 15:11:24 +0300 Subject: [PATCH] Tech | Script | Make sure androidTest compiles, then run all unit tests for debug build (#2306) --- scripts/check.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 scripts/check.sh diff --git a/scripts/check.sh b/scripts/check.sh new file mode 100755 index 0000000000..eeae21233c --- /dev/null +++ b/scripts/check.sh @@ -0,0 +1,4 @@ +# Makes sure that android test compile +./gradlew compileDebugAndroidTestSources -q +# Run all unit tests for debug build +./gradlew testDebugAll -q \ No newline at end of file