-
Notifications
You must be signed in to change notification settings - Fork 3k
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
{Packaging/MSI} Use embeddable python for MSI #14300
Conversation
@@ -14,7 +14,7 @@ class AmsSpTests(ScenarioTest): | |||
@StorageAccountPreparer(parameter_name='storage_account_for_create') | |||
@AllowLargeResponse() | |||
def test_ams_sp_create_reset(self, resource_group, storage_account_for_create): | |||
with mock.patch('azure.cli.command_modules.ams._utils._gen_guid', side_effect=self.create_guid): | |||
with mock.patch('azure.cli.command_modules.ams.operations.sp._gen_guid', side_effect=self.create_guid): |
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.
Follow Where to patch
f7ff24f
to
745c56b
Compare
Packaging/MSI |
745c56b
to
f709dc7
Compare
@@ -13,3 +13,5 @@ | |||
*.bat eol=crlf | |||
# The az script for Git Bash/Cygwin should be LF | |||
build_scripts/windows/scripts/az eol=lf | |||
# sh scripts should be LF | |||
*.sh eol=lf |
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.
why need this? Will git applicaiton get conflict with it?
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.
I would like to reuse the scripts/ci/build.sh
to run on Git Bash. Without this setting, all files checked out on Windows will be converted to crlf and will have error when run with bash.
Description
Testing Guide
History Notes
[Component Name 1] BREAKING CHANGE: az command a: Make some customer-facing breaking change.
[Component Name 2] az command b: Add some customer-facing feature.
This checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.