dockerfile updated

This commit is contained in:
Sidharth Bamba
2021-10-05 16:51:12 +05:30
parent 3973cf9192
commit 1b7315d96a

View File

@@ -37,15 +37,15 @@ RUN bash -c " \
if [ $FLAVOR = E2ETEST ] ; then \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.CustomerDataCleanup --info; \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.CustomerDataCleanup; \
cleanup=$? ; \
echo '$cleanup' ; \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.BrowserStackInit -PtestType=\"e2e\" executeE2ETests --info; \
echo "$cleanup" ; \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.BrowserStackInit -PtestType=\"e2e\" executeE2ETests; \
execution=$? ; \
echo '$execution' ; \
echo "$execution" ; \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.MockDataCleanup --info; \
postCleanup=$? ; \
echo '$postCleanup' ; \
echo "$postCleanup" ; \
\
elif [ $FLAVOR = DEV ] ; then \
./gradlew clean \