-
Notifications
You must be signed in to change notification settings - Fork 4k
Azure Machine Learning WebServicesRP new API version #3796
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
Conversation
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.
@NonStatic2014 a couple of comments
.gitignore
Outdated
@@ -203,3 +203,4 @@ FakesAssemblies/ | |||
/tools/*.dll | |||
*.GhostDoc.xml | |||
pingme.txt | |||
tools/LocalFeed/ |
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.
@NonStatic2014 why was this added?
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.
Oops, temporary local change. should not be included. Will remove it.
@@ -54,21 +54,6 @@ Gets the default location for a provider | |||
#> | |||
function Get-ProviderLocation($providerNamespace, $resourceType) | |||
{ | |||
if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne ` |
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.
@NonStatic2014 why are you no longer checking for provider location?
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.
Trying to make the test execution predictable and not impacted by other cmdlet which not related to the test target.
|
||
$newRegion = "westcentralus" | ||
|
||
# Validate that service no longer exists |
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.
@NonStatic2014 there seems to be a indentation issue with this file. Would you mind cleaning that up?
@@ -12,7 +12,7 @@ | |||
# RootModule = '' | |||
|
|||
# Version number of this module. | |||
ModuleVersion = '0.13.0' | |||
ModuleVersion = '1.0.0' |
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.
@NonStatic2014 do not bump this version, we will do that during the release process
[assembly: AssemblyVersion("0.13.0")] | ||
[assembly: AssemblyFileVersion("0.13.0")] | ||
[assembly: AssemblyVersion("1.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0")] |
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.
@NonStatic2014 revert these changes as we will update these versions during the release process
@@ -9,7 +9,7 @@ | |||
@{ | |||
|
|||
# Version number of this module. | |||
ModuleVersion = '0.9.0' | |||
ModuleVersion = '1.0.0' |
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.
@NonStatic2014 revert these changes as we will bump the version during the release process
@NonStatic2014 Hey Klein, would you mind pulling the latest changes from the |
@NonStatic2014 it looks like you are bringing in changes from older pull requests. You will need to rebase. You can do so by following the steps in this document: https://github.com/Azure/azure-powershell/blob/preview/documentation/cleaning-up-commits.md#rebasing |
e3e1473
to
3440c4e
Compare
Description
Azure Machine Learning WebServicesRP new API version
This checklist is used to make sure that common guidelines for a pull request are followed. You can find a more complete discussion of PowerShell cmdlet best practices here.
General Guidelines
Testing Guidelines
Cmdlet Signature Guidelines
ShouldProcess
and haveSupportShouldProcess=true
specified in the cmdlet attribute. You can find more information onShouldProcess
here.OutputType
attribute if any output is produced - if the cmdlet produces no output, it should implement aPassThru
parameter.Cmdlet Parameter Guidelines