Skip to content

Commit 0eb2ff7

Browse files
committed
updates makefile
1 parent c26f39e commit 0eb2ff7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/e2e-playwright/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,17 @@ CLASSIC_TIP_INPUT_FILE := .e2e-playwright-classictip-env.txt
117117
$(SLEEPERS_INPUT_FILE) $(JUPYTER_LAB_INPUT_FILE) $(CLASSIC_TIP_INPUT_FILE) $(S4L_INPUT_FILE):
118118
@read -p "Enter your product URL: " PRODUCT_URL; \
119119
read -p "Is the product billable [y/n]: " BILLABLE; \
120+
read -p "Is the product lite [y/n]: " IS_LITE; \
120121
read -p "Is the test running in autoscaled deployment [y/n]: " AUTOSCALED; \
121122
read -p "Enter your username: " USER_NAME; \
122123
read -s -p "Enter your password: " PASSWORD; echo ""; \
123124
echo "--product-url=$$PRODUCT_URL --user-name=$$USER_NAME --password=$$PASSWORD" > $@; \
124125
if [ "$$BILLABLE" = "y" ]; then \
125126
echo "--product-billable" >> $@; \
126127
fi; \
128+
if [ "$$IS_LITE" = "y" ]; then \
129+
echo "--product-lite" >> $@; \
130+
fi; \
127131
if [ "$$AUTOSCALED" = "y" ]; then \
128132
echo "--autoscaled" >> $@; \
129133
fi; \

0 commit comments

Comments
 (0)