-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor E2E tests, generate readme #29
Conversation
e2e/bitrise.yml
Outdated
if [ -z "$BITRISE_AAB_PATH" ] ; then echo "BITRISE_AAB_PATH env is empty" ; exit 1 ; fi ; | ||
if [ -z "$BITRISE_AAB_PATH_LIST" ] ; then echo "BITRISE_AAB_PATH_LIST env is empty" ; exit 1 ; fi ; | ||
|
||
if [ ! -f $BITRISE_DEPLOY_DIR/$EXPECTED_AAB ] ; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if [ ! -f $BITRISE_DEPLOY_DIR/$EXPECTED_AAB ] ; then | |
if [ ! -f "$BITRISE_DEPLOY_DIR/$EXPECTED_AAB" ] ; then |
To prevent unexpected false positives with empty strings (right now i can not be empty tough).
e2e/bitrise.yml
Outdated
test_nested_module: | ||
title: Test simple Android project with nested module | ||
envs: | ||
- SAMPLE_APP_URL: https://github.com/bitrise-io/android-multiple-test-results-sample.git |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- SAMPLE_APP_URL: https://github.com/bitrise-io/android-multiple-test-results-sample.git | |
- TEST_APP_URL: https://github.com/bitrise-io/android-multiple-test-results-sample.git |
As used for example in https://github.com/bitrise-steplib/steps-xcode-test/blob/5de2593fa7291ff3e6bf25b54f061da7ee823713/e2e/bitrise.yml.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, fixed. (I didn't accept this suggestion because there are more instances of this env var in the file)
Checklist
Context
Part of the initiative to refactor step to new standards.
Changes
README.md
with generator stepe2e/bitrise.yml
/tmp
dir but otherwise test the same thingsInvestigation details
Decisions