dockerfile updated

This commit is contained in:
Sidharth Bamba
2021-10-05 15:15:35 +05:30
parent dca350feb0
commit b3962c4fa9

View File

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