File tree Expand file tree Collapse file tree
.github/actions/setup-test-target-scripts/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121 export DDEV_TEST_ENABLE_TRACING=" 0"
2222fi
2323
24- # Set E2E flags based on repo (latest always uses --base --new-env)
25- if [[ " $INPUT_REPO " == ' core' || " $INPUT_IS_LATEST " == ' true' ]]; then
24+ # Set E2E flags based on context and repo
25+ if [[ " $INPUT_CONTEXT " == test-agent* ]]; then
26+ E2E_FLAGS=" --new-env"
27+ elif [[ " $INPUT_REPO " == ' core' || " $INPUT_IS_LATEST " == ' true' ]]; then
2628 E2E_FLAGS=" --base --new-env"
2729else
2830 E2E_FLAGS=" --dev"
Original file line number Diff line number Diff line change 115115 echo " INPUT_MINIMUM_BASE_PACKAGE=${INPUT_MINIMUM_BASE_PACKAGE:- false} "
116116 echo " INPUT_PYTEST_ARGS=${INPUT_PYTEST_ARGS:- } "
117117 echo " INPUT_IS_FORK=${INPUT_IS_FORK:- false} "
118+ echo " INPUT_CONTEXT=${INPUT_CONTEXT:- standard} "
118119} >> " $GITHUB_ENV "
119120
120121# Override with custom vars if provided
You can’t perform that action at this time.
0 commit comments