changes
This commit is contained in:
@@ -38,6 +38,7 @@ RUN bash -c " \
|
||||
if [ $FLAVOR = E2ETEST ] ; then \
|
||||
|
||||
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.CustomerDataCleanup; \
|
||||
if [ $? -ne 0 ] ; then exit 1 ; fi ; \
|
||||
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.BrowserStackInit -PtestType=\"e2e\" executeE2ETests; \
|
||||
if [ $? -ne 0 ] ; then exit 1 ; fi ; \
|
||||
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.MockDataCleanup; \
|
||||
|
||||
12
run-tests.sh
Normal file
12
run-tests.sh
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.CustomerDataCleanup
|
||||
|
||||
if [ $? -eq 0 ]
|
||||
then
|
||||
echo "Tests Passed"
|
||||
exit 0
|
||||
else
|
||||
echo "Tests Failed"
|
||||
exit 1
|
||||
fi
|
||||
Reference in New Issue
Block a user