This commit is contained in:
rahul bhat
2021-10-29 20:51:26 +05:30
243 changed files with 7504 additions and 3045 deletions

View File

@@ -37,11 +37,7 @@ RUN echo ${RELEASE_STORE_FILE} | base64 -d >> app/navi-release-key.jks
RUN bash -c " \
if [ $FLAVOR = E2ETEST ] ; then \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.CustomerDataCleanup; EX1=\"\$?\";\
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.BrowserStackInit -PtestType=\"e2e\" executeE2ETests; EX2=\"\$?\";\
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.MockDataCleanup ; EX3=\"\$?\";\
if [ $EX1 == 0 ] && [ $EX2 == 0 ] && [ $EX3 == 0 ]; then exit 0; else exit 1; fi; \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.CustomerDataCleanup -PtestType=\"e2e\" executeE2ETests; \
\
elif [ $FLAVOR = DEV ] ; then \
./gradlew clean \