dockerfile updated for e2e

This commit is contained in:
Sidharth Bamba
2021-09-27 15:00:29 +05:30
parent e378e3e263
commit a497f7b8a2

View File

@@ -37,10 +37,7 @@ RUN bash -c " \
if [ $FLAVOR = E2ETEST ] ; then \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.CustomerDataCleanup; \
status=$? \
if [ $status -ne 0 ]; then
echo "Failed while cleaning data: $status" \
fi \
echo \"Failed while cleaning data: $status\" \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.BrowserStackInit -PtestType=\"e2e\" executeE2ETests; \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.MockDataCleanup; \
\