-
Notifications
You must be signed in to change notification settings - Fork 61
upgrade to tcgc 0.44.3 #2723
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
Merged
Merged
upgrade to tcgc 0.44.3 #2723
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1d97a5c
upgrade to tcgc 0.44.2
tadelesh 4a3e732
update test
tadelesh a7ff668
changelog
tadelesh d6f3411
Merge branch 'main' into upgrade_tcgc
tadelesh 79aaf87
format
tadelesh 09740f6
fix multipart
msyyc 96ef46b
fix test
tadelesh ecf2d46
rename
tadelesh 6e7e273
upgrade to tcgc 0.44.3
tadelesh 06e9881
Merge branch 'main' into upgrade_tcgc
tadelesh 2b4756e
update lock file
tadelesh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| changeKind: dependencies | ||
| packages: | ||
| - "@azure-tools/typespec-python" | ||
| --- | ||
|
|
||
| upgrade to tcgc 0.44.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
...test/azure/generated/client-naming/generated_tests/test_naming_client_model_operations.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| # coding=utf-8 | ||
| # -------------------------------------------------------------------------- | ||
| # Copyright (c) Microsoft Corporation. All rights reserved. | ||
| # Licensed under the MIT License. See License.txt in the project root for license information. | ||
| # Code generated by Microsoft (R) Python Code Generator. | ||
| # Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
| # -------------------------------------------------------------------------- | ||
| import pytest | ||
| from devtools_testutils import recorded_by_proxy | ||
| from testpreparer import NamingClientTestBase, NamingPreparer | ||
|
|
||
|
|
||
| @pytest.mark.skip("you may need to update the auto-generated test case before run it") | ||
| class TestNamingClientModelOperations(NamingClientTestBase): | ||
| @NamingPreparer() | ||
| @recorded_by_proxy | ||
| def test_client(self, naming_endpoint): | ||
| client = self.create_client(endpoint=naming_endpoint) | ||
| response = client.client_model.client( | ||
| body={"defaultName": bool}, | ||
| ) | ||
|
|
||
| # please add some check logic here by yourself | ||
| # ... | ||
|
|
||
| @NamingPreparer() | ||
| @recorded_by_proxy | ||
| def test_language(self, naming_endpoint): | ||
| client = self.create_client(endpoint=naming_endpoint) | ||
| response = client.client_model.language( | ||
| body={"defaultName": bool}, | ||
| ) | ||
|
|
||
| # please add some check logic here by yourself | ||
| # ... |
36 changes: 36 additions & 0 deletions
36
...zure/generated/client-naming/generated_tests/test_naming_client_model_operations_async.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| # coding=utf-8 | ||
| # -------------------------------------------------------------------------- | ||
| # Copyright (c) Microsoft Corporation. All rights reserved. | ||
| # Licensed under the MIT License. See License.txt in the project root for license information. | ||
| # Code generated by Microsoft (R) Python Code Generator. | ||
| # Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
| # -------------------------------------------------------------------------- | ||
| import pytest | ||
| from devtools_testutils.aio import recorded_by_proxy_async | ||
| from testpreparer import NamingPreparer | ||
| from testpreparer_async import NamingClientTestBaseAsync | ||
|
|
||
|
|
||
| @pytest.mark.skip("you may need to update the auto-generated test case before run it") | ||
| class TestNamingClientModelOperationsAsync(NamingClientTestBaseAsync): | ||
| @NamingPreparer() | ||
| @recorded_by_proxy_async | ||
| async def test_client(self, naming_endpoint): | ||
| client = self.create_async_client(endpoint=naming_endpoint) | ||
| response = await client.client_model.client( | ||
| body={"defaultName": bool}, | ||
| ) | ||
|
|
||
| # please add some check logic here by yourself | ||
| # ... | ||
|
|
||
| @NamingPreparer() | ||
| @recorded_by_proxy_async | ||
| async def test_language(self, naming_endpoint): | ||
| client = self.create_async_client(endpoint=naming_endpoint) | ||
| response = await client.client_model.language( | ||
| body={"defaultName": bool}, | ||
| ) | ||
|
|
||
| # please add some check logic here by yourself | ||
| # ... |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.